diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-10-25 19:13:20 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-10-25 19:13:20 (GMT) | 
| commit | 96c5a881b2768057f8189030b543fefa2835e782 (patch) | |
| tree | 217ee6b39ede448c014490fc7eee9edf2e0f32d9 | |
| parent | f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3 (diff) | |
| download | swift-contrib-96c5a881b2768057f8189030b543fefa2835e782.zip swift-contrib-96c5a881b2768057f8189030b543fefa2835e782.tar.bz2  | |
Removing Shared.h.
| -rw-r--r-- | Swiften/Base/Shared.h | 22 | 
1 files changed, 0 insertions, 22 deletions
diff --git a/Swiften/Base/Shared.h b/Swiften/Base/Shared.h deleted file mode 100644 index 612fe5b..0000000 --- a/Swiften/Base/Shared.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#pragma once - -#include <boost/shared_ptr.hpp> - -namespace Swift { -	template<typename T> -	class Shared { -		public: -			typedef boost::shared_ptr<T> ref; - -			template<typename X> -			static boost::shared_ptr<T> cast(const X& from) { -				return boost::dynamic_pointer_cast<T>(from); -			} -	}; -}  | 
 Swift