/usr/include/openwsman/cpp/WsmanEPR.h is in libwsman-clientpp-dev 2.6.5-0ubuntu3.
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 29 30 31 32 33 34 | #ifndef __WSMAN_EPR_H
#define __WSMAN_EPR_H
#include <string>
#include "wsman-epr.h"
using namespace std;
namespace WsmanClientNamespace {
class WsmanEPR {
private:
epr_t *epr;
public:
WsmanEPR(const string &eprstring);
WsmanEPR(const string &uri, const string &address);
WsmanEPR(WsmanEPR &epr);
~WsmanEPR();
int addTextSelector(const string &name, const string &value);
int addEprSelector(const string &name, WsmanEPR &epr);
int deleteSelector(const string &name);
bool operator==(const WsmanEPR &rhs) const;
bool operator!=(const WsmanEPR &rhs) const;
epr_t *getepr() const;
operator epr_t*() const;
};
}
#endif
|