1 #ifndef __SSMD_SNMPTABLE_H__
2 #define __SSMD_SNMPTABLE_H__
6 #include "snmp_pp/snmp_pp.h"
10 typedef std::list<Vb> SNMPList;
14 SNMPTable(Snmp & snmp,
15 const CTarget & target,
19 bool valid() const { return _valid; }
20 bool empty() const { return _list.empty(); }
23 bool valueExists(const T & value) const;
24 bool getByOid(const Oid & oid, Vb & vb) const;
25 const SNMPList & getList() const { return _list; }
34 #include "snmptable.inl.h"