diff options
Diffstat (limited to 'Swiften/Disco/CapsMemoryStorage.h')
-rw-r--r-- | Swiften/Disco/CapsMemoryStorage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/Disco/CapsMemoryStorage.h b/Swiften/Disco/CapsMemoryStorage.h index b61dc3e..2a81554 100644 --- a/Swiften/Disco/CapsMemoryStorage.h +++ b/Swiften/Disco/CapsMemoryStorage.h @@ -1,22 +1,23 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <boost/shared_ptr.hpp> #include <map> #include <string> +#include <Swiften/Base/API.h> #include <Swiften/Disco/CapsStorage.h> namespace Swift { - class CapsMemoryStorage : public CapsStorage { + class SWIFTEN_API CapsMemoryStorage : public CapsStorage { public: CapsMemoryStorage() {} virtual DiscoInfo::ref getDiscoInfo(const std::string& hash) const { CapsMap::const_iterator i = caps.find(hash); if (i != caps.end()) { |