fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 ffeunitdatahexvector.h - description 00003 ------------------- 00004 begin : Di Jun 28 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 FFEUNITDATAHEXVECTOR_H 00019 #define FFEUNITDATAHEXVECTOR_H 00020 00021 #include <string> 00022 #include <feunitdata.h> 00023 00028 class FEunitDataHexVector : public FEunitData { 00029 public: 00030 FEunitDataHexVector(); 00031 virtual ~FEunitDataHexVector(); 00032 00033 virtual void display(FILE *fout); 00034 00035 virtual void copyToMatrix(FEunitData **matrix, int element, int n); 00036 00037 00039 unsigned long *value; 00040 00042 //int n; 00043 00045 //const char *name; 00046 00048 int *marker; 00049 00051 std::string *markerName; 00052 00054 int nMarker; 00055 00056 }; 00057 00058 #endif