gauge.h
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*===================================================================
  2.   Copyright (c) 1999
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14.  
  15.   SNMP++ G A U G E. H
  16.   GAUGE32 CLASS DEFINITION
  17.   VERSION:
  18.   2.8
  19.   RCS INFO:
  20.   $Header: gauge.h,v 1.18 96/09/11 14:01:25 hmgr Exp $
  21.   DESIGN:
  22.   Peter E Mellquist
  23.   AUTHOR:
  24.   Peter E Mellquist
  25.   DATE:
  26.   June 15, 1999
  27.   LANGUAGE:
  28.   ANSI C++
  29.   OPERATING SYSTEMS:
  30.   MS-Windows Win32
  31.   BSD UNIX
  32.   DESCRIPTION:
  33.   Class definition for SMI Gauge32 class.
  34. =====================================================================*/
  35. #ifndef _GAUGE
  36. #define _GAUGE
  37. #include "integer.h"
  38. //------------[ Gauge32 Class ]------------------------------------------
  39. // The gauge class allows all the functionality of unsigned
  40. // integers but is recognized as a distinct SMI type. Gauge32
  41. // objects may be set or get into Vb objects.
  42. //
  43. class DLLOPT Gauge32: public SnmpUInt32
  44. {
  45.   public:
  46.      // constructor, no value
  47.      Gauge32( void);
  48.      // constructor with a value
  49.      Gauge32( const unsigned long i);
  50.      // copy constructor
  51.      Gauge32 ( const Gauge32 &g);
  52.      // destructor for a Gauge32 (ensure that Value::~Value() is overridden)
  53.      ~Gauge32();
  54.      // syntax type
  55.      SmiUINT32 get_syntax();
  56.      // create a new instance of this Value
  57.      SnmpSyntax *clone() const;
  58.      // overloaded assignment
  59.      Gauge32& operator=( const Gauge32 &uli);
  60.      // overloaded assignment
  61.      Gauge32& operator=( const unsigned long int i);
  62.      // otherwise, behave like an unsigned int
  63.      operator unsigned long();
  64.      // copy an instance of this Value
  65.      SnmpSyntax& operator=( SnmpSyntax &val);
  66. };
  67. #endif //_GAUGE