diff options
Diffstat (limited to 'Swiften/Elements/CarbonsPrivate.h')
-rw-r--r-- | Swiften/Elements/CarbonsPrivate.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Swiften/Elements/CarbonsPrivate.h b/Swiften/Elements/CarbonsPrivate.h new file mode 100644 index 0000000..5cc25ff --- /dev/null +++ b/Swiften/Elements/CarbonsPrivate.h @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2015-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. + */ + +#pragma once + +#include <memory> + +#include <Swiften/Base/API.h> +#include <Swiften/Elements/Payload.h> + +namespace Swift { + class SWIFTEN_API CarbonsPrivate : public Payload { + public: + typedef std::shared_ptr<CarbonsPrivate> ref; + + public: + virtual ~CarbonsPrivate(); + }; +} |