diff options
Diffstat (limited to 'Swiften/Elements/SoftwareVersion.h')
| -rw-r--r-- | Swiften/Elements/SoftwareVersion.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/Elements/SoftwareVersion.h b/Swiften/Elements/SoftwareVersion.h index c49b47b..e0eeaa3 100644 --- a/Swiften/Elements/SoftwareVersion.h +++ b/Swiften/Elements/SoftwareVersion.h @@ -3,22 +3,23 @@ * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include <string> #include <boost/shared_ptr.hpp> +#include <Swiften/Base/API.h> #include <Swiften/Elements/Payload.h> namespace Swift { - class SoftwareVersion : public Payload { + class SWIFTEN_API SoftwareVersion : public Payload { public: typedef boost::shared_ptr<SoftwareVersion> ref; SoftwareVersion( const std::string& name = "", const std::string& version = "", const std::string& os = "") : name_(name), version_(version), os_(os) {} |
Swift