#ifndef __SSMD_SNMPTABLE_INL_H__ #define __SSMD_SNMPTABLE_INL_H__ namespace SSMD { template inline bool SNMPTable::valueExists(const T & value) const { SNMPList::const_iterator it; for (it = _list.begin(); it != _list.end(); ++it) { T v; if (it->get_value(v) != SNMP_CLASS_SUCCESS) { continue; } if (v == value) return true; } return false; } } #endif