/usr/include/libprelude/prelude-client-easy.hxx is in libprelude-dev 1.0.0-11.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #ifndef _LIBPRELUDE_PRELUDE_CLIENT_EASY_HXX
#define _LIBPRELUDE_PRELUDE_CLIENT_EASY_HXX
#include "prelude.h"
#include "idmef.hxx"
#include "prelude-client.hxx"
namespace Prelude {
class ClientEasy : public Client {
private:
void setup_analyzer(idmef_analyzer *analyzer,
const char *_model,
const char *_class,
const char *_manufacturer,
const char *version);
public:
ClientEasy(const char *profile,
int permission = Client::IDMEF_WRITE,
const char *_model = "Unknown model",
const char *_class = "Unknown class",
const char *_manufacturer = "Unknown manufacturer",
const char *_version = "Unknown version");
};
};
#endif
|