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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  collect.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++ C O L L E C T . H
  43.   COLLECTION CLASS DEFINITION
  44.   DESIGN + AUTHOR:
  45.   Peter E Mellquist
  46.   LANGUAGE:
  47.   ANSI C++
  48.   OPERATING SYSTEMS:
  49.   Win 32
  50.   BSD UNIX
  51.   DESCRIPTION:
  52.   Simple Collection classes for SNMP++ classes.
  53. =====================================================================*/
  54. // $Id: collect.h 287 2007-03-22 22:37:09Z katz $
  55. #ifndef _COLLECTION_H_
  56. #define _COLLECTION_H_
  57. #include "snmp_pp/config_snmp_pp.h"
  58. #ifdef SNMP_PP_NAMESPACE
  59. namespace Snmp_pp {
  60. #endif
  61. #ifndef TRUE
  62. #define TRUE 1
  63. #endif
  64. #ifndef FALSE
  65. #define FALSE 0
  66. #endif
  67. #define MAXT 25     // elements per block
  68. #ifdef SNMP_PP_NAMESPACE
  69. } // end of namespace Snmp_pp
  70. #endif 
  71. // If you have problems with the collection code:
  72. // 1. Send a mail to katz@agentpp.com with details about the used
  73. //    compile flags, compiler (for example g++ -dumpspecs),... 
  74. //    so we can change the default behaviour for your system
  75. // 2. comment in the define _OLD_TEMPLATE_COLLECTION in
  76. //    config_snmp_pp.h
  77. #ifdef _OLD_TEMPLATE_COLLECTION
  78. #include "snmp_pp/collect2.h"
  79. #else
  80. #include "snmp_pp/collect1.h"
  81. #endif
  82. #endif  // _COLLECTION_H_