10 lines
140 B
C++
10 lines
140 B
C++
#ifndef _PROTO_FIXEDPOINT_HPP_
|
|
#define _PROTO_FIXEDPOINT_HPP_
|
|
|
|
class FixedPoint
|
|
{
|
|
public:
|
|
enum {FPShift=12,FPMul=4096};
|
|
private:
|
|
};
|
|
#endif |