diff options
Diffstat (limited to 'Swiften/Elements/Body.h')
| -rw-r--r-- | Swiften/Elements/Body.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Swiften/Elements/Body.h b/Swiften/Elements/Body.h index 4ef8bf0..fc7016f 100644 --- a/Swiften/Elements/Body.h +++ b/Swiften/Elements/Body.h @@ -1,20 +1,21 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <string> +#include <Swiften/Base/API.h> #include <Swiften/Elements/Payload.h> namespace Swift { - class Body : public Payload { + class SWIFTEN_API Body : public Payload { public: Body(const std::string& text = "") : text_(text) { } void setText(const std::string& text) { text_ = text; |
Swift