Fix for coverity #29394
[supertux.git] / src / object / anchor_point.hpp
index a141ed3..3030ca1 100644 (file)
@@ -1,10 +1,27 @@
-#ifndef __ANCHOR_POINT_HPP__
-#define __ANCHOR_POINT_HPP__
+//  SuperTux
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
+//
+//  This program is free software: you can redistribute it and/or modify
+//  it under the terms of the GNU General Public License as published by
+//  the Free Software Foundation, either version 3 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+#ifndef HEADER_SUPERTUX_OBJECT_ANCHOR_POINT_HPP
+#define HEADER_SUPERTUX_OBJECT_ANCHOR_POINT_HPP
 
 #include <string>
+
 #include "math/vector.hpp"
 
-class Rect;
+class Rectf;
 
 enum AnchorPoint {
   ANCHOR_H_MASK = 0x00f0,
@@ -14,18 +31,19 @@ enum AnchorPoint {
   ANCHOR_LEFT   = 0x0001,
   ANCHOR_RIGHT  = 0x0002,
   ANCHOR_MIDDLE = 0x0000,
-  
+
   ANCHOR_TOP_LEFT = ANCHOR_TOP | ANCHOR_LEFT,
   ANCHOR_TOP_RIGHT = ANCHOR_TOP | ANCHOR_RIGHT,
   ANCHOR_BOTTOM_LEFT = ANCHOR_BOTTOM | ANCHOR_LEFT,
-  ANCHOR_BOTTOM_RIGHT = ANCHOR_BOTTOM | ANCHOR_RIGHT,
+  ANCHOR_BOTTOM_RIGHT = ANCHOR_BOTTOM | ANCHOR_RIGHT
 };
 
 std::string anchor_point_to_string(AnchorPoint point);
 AnchorPoint string_to_anchor_point(const std::string& str);
-Vector get_anchor_pos(const Rect& rect, AnchorPoint point);
-Vector get_anchor_pos(const Rect& destrect, float width, float height,
+Vector get_anchor_pos(const Rectf& rect, AnchorPoint point);
+Vector get_anchor_pos(const Rectf& destrect, float width, float height,
                       AnchorPoint point);
 
 #endif
 
+/* EOF */