diff options
Diffstat (limited to 'xfa/src/fxbarcode/BC_ResultPoint.h')
-rw-r--r-- | xfa/src/fxbarcode/BC_ResultPoint.h | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/xfa/src/fxbarcode/BC_ResultPoint.h b/xfa/src/fxbarcode/BC_ResultPoint.h index 03a23d417b..e7d1f3e311 100644 --- a/xfa/src/fxbarcode/BC_ResultPoint.h +++ b/xfa/src/fxbarcode/BC_ResultPoint.h @@ -7,18 +7,16 @@ #ifndef _BC_RESULTPOINT_H_
#define _BC_RESULTPOINT_H_
class CBC_ResultPoint;
-class CBC_ResultPoint
-{
-public:
- CBC_ResultPoint();
- CBC_ResultPoint(FX_FLOAT x, FX_FLOAT y);
- virtual ~CBC_ResultPoint()
- {
- }
- virtual FX_FLOAT GetX();
- virtual FX_FLOAT GetY();
-protected:
- FX_FLOAT m_x;
- FX_FLOAT m_y;
+class CBC_ResultPoint {
+ public:
+ CBC_ResultPoint();
+ CBC_ResultPoint(FX_FLOAT x, FX_FLOAT y);
+ virtual ~CBC_ResultPoint() {}
+ virtual FX_FLOAT GetX();
+ virtual FX_FLOAT GetY();
+
+ protected:
+ FX_FLOAT m_x;
+ FX_FLOAT m_y;
};
#endif
|