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

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.   SNMP++ T I M E T I C K. H   
  15.       
  16.   TIMETICK CLASS DEFINITION
  17.    
  18.   VERSION:
  19.   2.8
  20.   RCS INFO:
  21.   $Header: timetick.h,v 1.15 96/09/11 14:01:39 hmgr Exp $
  22.        
  23.   DESIGN:
  24.   Peter E Mellquist
  25.                 
  26.   AUTHOR:      
  27.   Peter E Mellquist
  28.               
  29.   LANGUAGE:
  30.   ANSI C++ 
  31.       
  32.   OPERATING SYSTEMS:
  33.   MS-Windows Win32
  34.   BSD UNIX
  35.       
  36.   DESCRIPTION:
  37.   Class definition for SMI Timeticks class.
  38.         
  39. =====================================================================*/
  40. #ifndef _TIMETICKS
  41. #define _TIMETICKS
  42. #include "integer.h"
  43. #define TICKOUTBUF 30 // max formatted time string
  44. //------------[ TimeTicks Class ]-----------------------------------
  45. // The timeticks class allows all the functionality of unsigned
  46. // integers but is recognized as a distinct SMI type. TimeTicks
  47. // objects may be get or set into Vb objects.
  48. //
  49. class DLLOPT TimeTicks: public SnmpUInt32
  50. {
  51.     
  52.   public:
  53.      // constructor no args 
  54.      TimeTicks( void);
  55.         
  56.      // constructor with a value   
  57.      TimeTicks( const unsigned long i);
  58.         
  59.      // copy constructor
  60.      TimeTicks( const TimeTicks &t);
  61.      // destructor 
  62.      ~TimeTicks();
  63.      // syntax type
  64.      SmiUINT32 get_syntax();
  65.      // get a printable ASCII value
  66.      char *get_printable();
  67.      // create a new instance of this Value
  68.      SnmpSyntax *clone() const;
  69.      // copy an instance of this Value
  70.      SnmpSyntax& operator=(SnmpSyntax &val);
  71.     
  72.      // overloaded assignment
  73.      TimeTicks& operator=( const TimeTicks &uli); 
  74.         
  75.      // overloaded assignment
  76.      TimeTicks& operator=( const unsigned long int i); 
  77.         
  78.      // otherwise, behave like an unsigned long    
  79.      operator unsigned long();
  80.   protected:
  81.     char output_buffer[TICKOUTBUF];  // for storing printed form
  82.             
  83. }; 
  84. #endif