Added SurfacePtr
authorgrumbel <grumbel@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sun, 13 Dec 2009 23:30:55 +0000 (23:30 +0000)
committergrumbel <grumbel@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sun, 13 Dec 2009 23:30:55 +0000 (23:30 +0000)
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6209 837edb03-e0f3-0310-88ca-d4d4e8b29345

src/video/surface_ptr.hpp [new file with mode: 0644]

diff --git a/src/video/surface_ptr.hpp b/src/video/surface_ptr.hpp
new file mode 100644 (file)
index 0000000..c1f7380
--- /dev/null
@@ -0,0 +1,27 @@
+//  SuperTux
+//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.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_VIDEO_SURFACE_PTR_HPP
+#define HEADER_SUPERTUX_VIDEO_SURFACE_PTR_HPP
+
+#include <boost/shared_ptr.hpp>
+
+class Surface;
+typedef boost::shared_ptr<Surface> SurfacePtr;
+
+#endif
+
+/* EOF */