00001
00002
00003
00004 #ifndef _VOLTDUMP_H
00005 #define _VOLTDUMP_H
00006
00007 #include "powerflow.h"
00008
00009 typedef enum {
00010 VDM_RECT,
00011 VDM_POLAR
00012 } VDMODE;
00013
00014 class voltdump : public gld_object
00015 {
00016 public:
00017 TIMESTAMP runtime;
00018 char32 group;
00019 char256 filename;
00020 int32 runcount;
00021 enumeration mode;
00022 public:
00023 static CLASS *oclass;
00024 public:
00025 voltdump(MODULE *mod);
00026 int create(void);
00027 int init(OBJECT *parent);
00028 TIMESTAMP commit(TIMESTAMP t);
00029 int isa(char *classname);
00030
00031 void dump(TIMESTAMP t);
00032 };
00033
00034 #endif // _VOLTDUMP_H
00035