mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-29 19:00:17 +02:00
23 lines
307 B
C++
23 lines
307 B
C++
#ifndef MESSAGE_H
|
|
#define MESSAGE_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class I2_JSONRPC_API Message
|
|
{
|
|
private:
|
|
Dictionary::Ptr m_Dictionary;
|
|
|
|
public:
|
|
Message(void);
|
|
Message(const Dictionary::Ptr& dictionary);
|
|
Message(const Message& message);
|
|
|
|
Dictionary::Ptr GetDictionary(void) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* MESSAGE_H */
|