timetick.h
上传用户:ets1996
上传日期:2014-09-30
资源大小:353k
文件大小:5k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  timetick.h  
  4.   _##
  5.   _##  SNMP++v3.2.22
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2007 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, Wed May  2 23:22:30 CEST 2007 
  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++ T I M E T I C K. H
  43.   TIMETICK CLASS DEFINITION
  44.   DESIGN + AUTHOR:
  45.   Peter E Mellquist
  46.   LANGUAGE:
  47.   ANSI C++
  48.   OPERATING SYSTEMS:
  49.   MS-Windows Win32
  50.   BSD UNIX
  51.   DESCRIPTION:
  52.   Class definition for SMI Timeticks class.
  53. =====================================================================*/
  54. // $Id: timetick.h 287 2007-03-22 22:37:09Z katz $
  55. #ifndef _TIMETICKS
  56. #define _TIMETICKS
  57. #include "snmp_pp/integer.h"
  58. #ifdef SNMP_PP_NAMESPACE
  59. namespace Snmp_pp {
  60. #endif
  61. #define TICKOUTBUF 30 // max formatted time string
  62. //------------[ TimeTicks Class ]-----------------------------------
  63. /**
  64.  * The timeticks class allows all the functionality of unsigned
  65.  * integers but is recognized as a distinct SMI type. TimeTicks
  66.  * objects may be get or set into Vb objects.
  67.  */
  68. class DLLOPT TimeTicks : public SnmpUInt32
  69. {
  70.  public:
  71.   /**
  72.    * Constructs a zero TimeTicks object.
  73.    */
  74.   TimeTicks() : SnmpUInt32()
  75.     { smival.syntax = sNMP_SYNTAX_TIMETICKS; };
  76.   /**
  77.    * Constructs a TimeTicks object with the given value.
  78.    *
  79.    * @param val - time in hundredths of seconds.
  80.    */
  81.   TimeTicks(const unsigned long val) : SnmpUInt32(val)
  82.     { smival.syntax = sNMP_SYNTAX_TIMETICKS; };
  83.   /**
  84.    * Copy constructor.
  85.    *
  86.    * @param t - Time for the new object.
  87.    */
  88.   TimeTicks(const TimeTicks &t);
  89.   /**
  90.    * Destructor.
  91.    */
  92.   ~TimeTicks() {};
  93.   /**
  94.    * Return the syntax.
  95.    *
  96.    * @return Always returns sNMP_SYNTAX_TIMETICKS.
  97.    */
  98.   SmiUINT32 get_syntax() const { return sNMP_SYNTAX_TIMETICKS; };
  99.   /**
  100.    * Get a printable ASCII value.
  101.    */
  102.   const char *get_printable() const;
  103.   /**
  104.    * Clone operator.
  105.    *
  106.    * @return Pointer to a newly created copy of the object.
  107.    */
  108.   SnmpSyntax *clone() const { return (SnmpSyntax *) new TimeTicks(*this); };
  109.   /**
  110.    * Map other SnmpSyntax objects to TimeTicks.
  111.    */
  112.   SnmpSyntax& operator=(const SnmpSyntax &val);
  113.   /**
  114.    * Overloaded assignment for TimeTicks.
  115.    *
  116.    * @param uli - new value
  117.    * @return self reference
  118.    */
  119.   TimeTicks& operator=(const TimeTicks &uli)
  120.     { smival.value.uNumber = uli.smival.value.uNumber;
  121.       m_changed = true; return *this; };
  122.   /**
  123.    * Overloaded assignment for unsigned longs.
  124.    *
  125.    * @param i - new value in hundrets of seconds
  126.    * @return self reference
  127.    */
  128.   TimeTicks& operator=(const unsigned long i)
  129.     { smival.value.uNumber = i; m_changed = true; return *this; };
  130.   /**
  131.    * Casting to unsigned long.
  132.    *
  133.    * @return Current value as hundrets of seconds
  134.    */
  135.   operator unsigned long() { return smival.value.uNumber; };
  136.   /**
  137.    * Reset the object.
  138.    */
  139.   void clear()
  140.     { smival.value.uNumber = 0; m_changed = true; };
  141.  protected:
  142.   SNMP_PP_MUTABLE char output_buffer[TICKOUTBUF];  // for storing printed form
  143. };
  144. #ifdef SNMP_PP_NAMESPACE
  145. } // end of namespace Snmp_pp
  146. #endif 
  147. #endif