提前编译号snmp++的库
#include <iostream>
#include <libsnmp.h>
#include "snmp_pp/snmp_pp.h"
#ifdef WIN32
#define strcasecmp _stricmp
#endif
#ifdef SNMP_PP_NAMESPACE
using namespace Snmp_pp;
#endif
using namespace std;
using namespace Snmp_pp;
int main() {
Gauge32 gaugeValue = 23; // 假设这是一个Gauge32类型的值
int intValue = static_cast<int>(gaugeValue);
std::cout << intValue << std::endl;
}