00001 // $Id: transformer.h,v 1.12 2008/02/04 23:08:12 natet Exp $ 00002 00003 #ifndef _TRANSFORMER_H 00004 #define _TRANSFORMER_H 00005 00006 #include "powerflow.h" 00007 #include "link.h" 00008 #include "transformer_configuration.h" 00009 00010 class transformer : public link 00011 { 00012 public: 00013 OBJECT *configuration; 00014 00015 int create(void); 00016 int init(void); 00017 static CLASS *oclass; 00018 static CLASS *pclass; 00019 static transformer *defaults; 00020 int isa(char *classname); 00021 00022 transformer(MODULE *mod); 00023 }; 00024 00025 #endif // _TRANSFORMER_H