diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-08-27 20:19:14 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-08-27 21:52:18 (GMT) | 
| commit | 7f1bcf974efac0ed87b6f8f639e1fdc16a89eb09 (patch) | |
| tree | 7fa948375b6cc56f37bd2be400d6d8be9ca97837 /Swift/Controllers/UnitTest/MockMUCRegistry.h | |
| parent | ba774f85e77531c7971804cb738c6b434a197258 (diff) | |
| download | swift-contrib-7f1bcf974efac0ed87b6f8f639e1fdc16a89eb09.zip swift-contrib-7f1bcf974efac0ed87b6f8f639e1fdc16a89eb09.tar.bz2  | |
Separate MUCRegistry from ChatsManager.
Diffstat (limited to 'Swift/Controllers/UnitTest/MockMUCRegistry.h')
| -rw-r--r-- | Swift/Controllers/UnitTest/MockMUCRegistry.h | 24 | 
1 files changed, 0 insertions, 24 deletions
diff --git a/Swift/Controllers/UnitTest/MockMUCRegistry.h b/Swift/Controllers/UnitTest/MockMUCRegistry.h deleted file mode 100644 index fdda8e1..0000000 --- a/Swift/Controllers/UnitTest/MockMUCRegistry.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) 2010 Kevin Smith - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. - */ - -#pragma once - -#include "Swiften/MUC/MUCRegistry.h" - -namespace Swift { -	class JID; - -	class MockMUCRegistry : public MUCRegistry { -		public: -			virtual ~MockMUCRegistry() {}; - -			void setNext(bool next) {next_ = next;} -			virtual bool isMUC(const JID&) const {return next_;} - -		private: -			bool next_; -	}; -}  | 
 Swift