00001 // $Id: line.h,v 1.10 2008/02/13 22:48:04 natet Exp $ 00002 00003 #ifndef _LINECONFIGURATION_H 00004 #define _LINECONFIGURATION_H 00005 00006 #include "line.h" 00007 00008 class line_configuration 00009 { 00010 public: 00011 static CLASS *oclass; 00012 static CLASS *pclass; 00013 static line_configuration *defaults; 00014 public: 00015 OBJECT *phaseA_conductor; 00016 OBJECT *phaseB_conductor; 00017 OBJECT *phaseC_conductor; 00018 OBJECT *phaseN_conductor; 00019 OBJECT *line_spacing; 00020 00021 line_configuration(MODULE *mod); 00022 int isa(char *classname); 00023 int create(void); 00024 00025 }; 00026 00027 #endif // _LINECONFIGURATION_H