Replaced boost::shared_ptr<> with std::shared_ptr<>
[supertux.git] / src / sprite / sprite_ptr.hpp
index 1f6a12a..e919abb 100644 (file)
@@ -1,5 +1,5 @@
 //  SuperTux
-//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
+//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmail.com>
 //
 //  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
 #ifndef HEADER_SUPERTUX_SPRITE_SPRITE_PTR_HPP
 #define HEADER_SUPERTUX_SPRITE_SPRITE_PTR_HPP
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class Sprite;
 
-typedef boost::shared_ptr<Sprite> SpritePtr;
+typedef std::shared_ptr<Sprite> SpritePtr;
 
 #endif