icinga2/jsonrpc/netstring.h

24 lines
388 B
C
Raw Normal View History

2012-03-28 13:24:49 +02:00
#ifndef I2_NETSTRING_H
#define I2_NETSTRING_H
namespace icinga
{
class Netstring : public Object
{
private:
size_t m_Length;
void *m_Data;
public:
typedef shared_ptr<Netstring> RefType;
typedef weak_ptr<Netstring> WeakRefType;
2012-03-28 21:20:13 +02:00
static cJSON *ReadJSONFromFIFO(FIFO::RefType fifo);
static void WriteJSONToFIFO(FIFO::RefType fifo, cJSON *object);
2012-03-28 13:24:49 +02:00
};
}
#endif /* I2_NETSTRING_H */