fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 feunitdata.h - description 00003 ------------------- 00004 begin : Do Jun 23 2005 00005 copyright : (C) 2005 by 00006 email : 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef FEUNITDATA_H 00019 #define FEUNITDATA_H 00020 00021 #include <cstdio> 00022 #include <string> 00023 00024 00029 class FEunitData { 00030 public: 00031 FEunitData(); 00032 virtual ~FEunitData(); 00033 00034 virtual void display(FILE *fout); 00035 00036 virtual void copyToMatrix(FEunitData **matrix, int element, int n); 00037 00039 //int *value; 00040 00042 int n; 00043 00045 std::string name; 00046 00047 00048 //const char *xName; 00049 00051 int *parameter; 00052 00053 std::string *parameterName; 00054 00055 int nParameter; 00056 00057 00058 }; 00059 00060 #endif