diff options
Diffstat (limited to 'Swiften/Elements/Replace.h')
| -rw-r--r-- | Swiften/Elements/Replace.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Swiften/Elements/Replace.h b/Swiften/Elements/Replace.h index 96935f5..eadc8fd 100644 --- a/Swiften/Elements/Replace.h +++ b/Swiften/Elements/Replace.h @@ -1,21 +1,28 @@ /* * Copyright (c) 2011 Vlad Voicu * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ +/* + * Copyright (c) 2015 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + #pragma once #include <boost/shared_ptr.hpp> #include <string> +#include <Swiften/Base/API.h> #include <Swiften/Elements/Payload.h> namespace Swift { - class Replace : public Payload { + class SWIFTEN_API Replace : public Payload { public: typedef boost::shared_ptr<Replace> ref; Replace(const std::string& id = std::string()) : replaceID_(id) {} const std::string& getID() const { return replaceID_; } |
Swift