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

SNMP编程

开发平台:

Visual C++

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