-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgauge.cpp
64 lines (54 loc) · 2.5 KB
/
gauge.cpp
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*_############################################################################
_##
_## gauge.cpp
_##
_## SNMP++ v3.4
_## -----------------------------------------------
_## Copyright (c) 2001-2021 Jochen Katz, Frank Fock
_##
_## This software is based on SNMP++2.6 from Hewlett Packard:
_##
_## Copyright (c) 1996
_## Hewlett-Packard Company
_##
_## ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
_## Permission to use, copy, modify, distribute and/or sell this software
_## and/or its documentation is hereby granted without fee. User agrees
_## to display the above copyright notice and this license notice in all
_## copies of the software and any documentation of the software. User
_## agrees to assume all liability for the use of the software;
_## Hewlett-Packard, Frank Fock, and Jochen Katz make no representations
_## about the suitability of this software for any purpose. It is provided
_## "AS-IS" without warranty of any kind, either express or implied. User
_## hereby grants a royalty-free license to any and all derivatives based
_## upon this software code base.
_##
_##########################################################################*/
/*===================================================================
Copyright (c) 1999
Hewlett-Packard Company
ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
Permission to use, copy, modify, distribute and/or sell this software
and/or its documentation is hereby granted without fee. User agrees
to display the above copyright notice and this license notice in all
copies of the software and any documentation of the software. User
agrees to assume all liability for the use of the software; Hewlett-Packard
makes no representations about the suitability of this software for any
purpose. It is provided "AS-IS" without warranty of any kind,either express
or implied. User hereby grants a royalty-free license to any and all
derivatives based upon this software code base.
G A U G E. C P P
GAUGE32 CLASS IMPLEMTATION
DESIGN + AUTHOR: Peter E Mellquist
DESCRIPTION:
Class implemtation for SMI Gauge32 class.
=====================================================================*/
char gauge_cpp_version[]="@(#) SNMP++ $Id$";
#include <libsnmp.h>
#include "snmp_pp/gauge.h" // header file for gauge class
#ifdef SNMP_PP_NAMESPACE
namespace Snmp_pp {
#endif
#ifdef SNMP_PP_NAMESPACE
} // end of namespace Snmp_pp
#endif