diff options
Diffstat (limited to 'Swiften/Elements/Idle.h')
| -rw-r--r-- | Swiften/Elements/Idle.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Swiften/Elements/Idle.h b/Swiften/Elements/Idle.h index 572eba2..d30120c 100644 --- a/Swiften/Elements/Idle.h +++ b/Swiften/Elements/Idle.h @@ -1,22 +1,29 @@ /* * Copyright (c) 2013 Tobias Markmann * 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 <boost/date_time/posix_time/posix_time_types.hpp> +#include <Swiften/Base/API.h> #include <Swiften/Elements/Payload.h> namespace Swift { - class Idle : public Payload { + class SWIFTEN_API Idle : public Payload { public: typedef boost::shared_ptr<Idle> ref; public: Idle() {} Idle(boost::posix_time::ptime since) : since_(since) { |
Swift