00001
00002
00003
00004 #ifndef _BILLDUMP_H
00005 #define _BILLDUMP_H
00006
00007 #include "powerflow.h"
00008 #include "node.h"
00009 #include "triplex_meter.h"
00010
00011 class billdump
00012 {
00013 public:
00014 TIMESTAMP runtime;
00015 char32 group;
00016 char32 filename;
00017 int32 runcount;
00018 public:
00019 static CLASS *oclass;
00020 public:
00021 billdump(MODULE *mod);
00022 int create(void);
00023 int init(OBJECT *parent);
00024 int commit(TIMESTAMP t);
00025 int isa(char *classname);
00026
00027 void dump(TIMESTAMP t);
00028 };
00029
00030 #endif // _BILLDUMP_H
00031