gauge.h
上传用户:uncom666
上传日期:2020-03-30
资源大小:1426k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  gauge.h  
  4.   _##
  5.   _##  SNMP++v3.2.24
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2009 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Fri May 29 22:35:14 CEST 2009 
  27.   _##  
  28.   _##########################################################################*/
  29. /*===================================================================
  30.   Copyright (c) 1999
  31.   Hewlett-Packard Company
  32.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  33.   Permission to use, copy, modify, distribute and/or sell this software
  34.   and/or its documentation is hereby granted without fee. User agrees
  35.   to display the above copyright notice and this license notice in all
  36.   copies of the software and any documentation of the software. User
  37.   agrees to assume all liability for the use of the software; Hewlett-Packard
  38.   makes no representations about the suitability of this software for any
  39.   purpose. It is provided "AS-IS without warranty of any kind,either express
  40.   or implied. User hereby grants a royalty-free license to any and all
  41.   derivatives based upon this software code base.
  42.   SNMP++ G A U G E. H
  43.   GAUGE32 CLASS DEFINITION
  44.   DESIGN + AUTHOR:  Peter E Mellquist
  45.   DESCRIPTION:
  46.   Class definition for SMI Gauge32 class.
  47. =====================================================================*/
  48. // $Id: gauge.h 1541 2009-05-29 11:29:22Z katz $
  49. #ifndef _GAUGE_H_
  50. #define _GAUGE_H_
  51. #include "snmp_pp/integer.h"
  52. #ifdef SNMP_PP_NAMESPACE
  53. namespace Snmp_pp {
  54. #endif
  55. //------------[ Gauge32 Class ]------------------------------------------
  56. /**
  57.  * The gauge class allows all the functionality of unsigned integers
  58.  * but is recognized as a distinct SMI type. Gauge32 objects may be
  59.  * set or get into Vb objects.
  60.  */
  61. class DLLOPT Gauge32: public SnmpUInt32
  62. {
  63.  public:
  64.   //-----------[ Constructors and Destrucotr ]----------------------
  65.   /**
  66.    * Constructs a valid Gauge32 with value 0.
  67.    */
  68.   Gauge32() : SnmpUInt32() { smival.syntax = sNMP_SYNTAX_GAUGE32; };
  69.   /**
  70.    * Constructs a valid Gauge32 with the given value.
  71.    *
  72.    * @param ul - value (0..MAX_UINT32)
  73.    */
  74.   Gauge32(const unsigned long ul) : SnmpUInt32(ul)
  75.     { smival.syntax = sNMP_SYNTAX_GAUGE32; };
  76.   /**
  77.    * Copy constructor.
  78.    *
  79.    * @param g32 - value
  80.    */
  81.   Gauge32(const Gauge32 &g32);
  82.   /**
  83.    * Destructor (ensure that SnmpUInt32::~SnmpUInt32() is overridden).
  84.    */
  85.   ~Gauge32() {};
  86.   //-----------[ SnmpSyntax methods ]----------------------
  87.   /**
  88.    * Get the Syntax of the object.
  89.    *
  90.    * @return This method always returns sNMP_SYNTAX_GAUGE32.
  91.    */
  92.   SmiUINT32 get_syntax() const { return sNMP_SYNTAX_GAUGE32; };
  93.   /**
  94.    * Clone the object.
  95.    *
  96.    * @return A cloned Gauge32 object allocated through new.
  97.    */
  98.   SnmpSyntax *clone() const { return (SnmpSyntax *) new Gauge32(*this); };
  99.   //-----------[ Overload some operators ]----------------------
  100.   /**
  101.    * Assign a Gauge32 to a Gauge32.
  102.    */
  103.   Gauge32& operator=(const Gauge32 &uli)
  104.     { smival.value.uNumber = uli.smival.value.uNumber;
  105.       m_changed = true;  return *this;};
  106.   /**
  107.    * Assign a unsigned long to a Gauge32.
  108.    *
  109.    * @param ul - New value
  110.    */
  111.   Gauge32& operator=(const unsigned long ul)
  112.     { smival.value.uNumber = ul; m_changed = true; return *this; };
  113.   // otherwise, behave like an unsigned int
  114.   /**
  115.    * Cast a Gauge32 to unsigned long.
  116.    *
  117.    * @return Current value as unsigned long.
  118.    */
  119.   operator unsigned long() { return smival.value.uNumber; };
  120. };
  121. #ifdef SNMP_PP_NAMESPACE
  122. } // end of namespace Snmp_pp
  123. #endif 
  124. #endif // _GAUGE_H_