Small style stuff
[zxing.git] / cpp / core / src / zxing / oned / OneDResultPoint.h
index 1b07b77..c9968c3 100644 (file)
@@ -1,8 +1,9 @@
+#ifndef __ONED_RESULT_POINT_H__
+#define __ONED_RESULT_POINT_H__
 /*
  *  OneDResultPoint.h
  *  ZXing
  *
- *  Created by Lukasz Warchol on 10-01-20.
  *  Copyright 2010 ZXing authors All rights reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
@@ -30,8 +31,10 @@ namespace zxing {
                        
                public:
                        OneDResultPoint(float posX, float posY);
-                       float getX();
-                       float getY();
+                       float getX() const;
+                       float getY() const;
                };
        }
 }
+
+#endif