00001 /*LabPlot : parser_struct.h*/ 00002 00003 #ifndef PARSER_STRUCT_H 00004 #define PARSER_STRUCT_H 00005 00006 struct con { 00007 char const *name; 00008 double value; 00009 }; 00010 00011 struct init { 00012 char const *fname; 00013 #ifdef HAVE_SOLARIS 00014 double (*fnct)(double); 00015 #else 00016 double (*fnct)(); 00017 #endif 00018 }; 00019 00020 #endif /* PARSER_STRUCT_H */