fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 ZeusLogGroup.h - description 00003 00004 begin : Mon Oct 11 2006 00005 copyright : (C) 2006 by Andreas Kopmann 00006 email : kopmann@ipe.fzk.de 00007 ***************************************************************************/ 00008 00009 00010 #ifndef ZEUSLOGGROUP_H 00011 #define ZEUSLOGGROUP_H 00012 00013 00014 #include <termios.h> 00015 #include <string> 00016 00017 00022 class ZeusLogGroup { 00023 public: 00025 ZeusLogGroup(int gid = 0); 00026 00027 ~ZeusLogGroup(); 00028 00029 private: 00030 00032 int debug; 00033 00035 int gid; 00036 00038 std::string name; 00039 00041 std::string desc; 00042 00044 int grouptype; 00045 00047 int interval; 00048 00050 int mode; 00051 00053 double ts; 00054 00056 int itemanz; 00057 00059 std::string *itemnames; 00060 00062 double *data; 00063 00064 }; 00065 00066 #endif