2011-06-22 08:53:40 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 Jan Kaluza
|
|
|
|
* Licensed under the Simplified BSD license.
|
|
|
|
* See Documentation/Licenses/BSD-simplified.txt for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
|
|
#include <Swiften/Elements/Payload.h>
|
|
|
|
|
2016-09-12 18:20:58 +02:00
|
|
|
#include "Swiften/SwiftenCompat.h"
|
|
|
|
|
2011-06-22 08:53:40 +02:00
|
|
|
namespace Swift {
|
|
|
|
class AttentionPayload : public Payload {
|
|
|
|
public:
|
2016-09-12 18:20:58 +02:00
|
|
|
typedef SWIFTEN_SHRPTR_NAMESPACE::shared_ptr<AttentionPayload> ref;
|
2011-06-22 08:53:40 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
AttentionPayload();
|
|
|
|
};
|
|
|
|
}
|