ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/fichier/src/mg_table.h
Revision: 697
Committed: Tue Jul 28 20:35:26 2015 UTC (9 years, 9 months ago) by francois
Content type: text/plain
File size: 1414 byte(s)
Log Message:
ajout d'une operation qui permet d'extraire le contenu des solutions fem dans un fichier csv.

File Contents

# User Rev Content
1 francois 697 //---------------------------------------------------------------------------
2    
3     #ifndef mg_tableH
4     #define mg_tableH
5     #include <string>
6    
7    
8     class FEM_MAILLAGE;
9     class FEM_NOEUD;
10     class FEM_ELEMENT1;
11     class FEM_ELEMENT2;
12     class FEM_ELEMENT3;
13    
14    
15     class MG_TABLE
16     {
17     public :
18     MG_TABLE();
19     ~MG_TABLE();
20    
21    
22     virtual std::string info_noeud(FEM_MAILLAGE *fem, FEM_NOEUD* no);
23     virtual void info_noeud(FEM_MAILLAGE *fem,char *nomfichier);
24     virtual std::string info_element1(FEM_MAILLAGE *fem, FEM_ELEMENT1* ele);
25     virtual void info_element1(FEM_MAILLAGE *fem,char *nomfichier);
26     virtual std::string info_element2(FEM_MAILLAGE *fem, FEM_ELEMENT2* ele);
27     virtual void info_element2(FEM_MAILLAGE *fem,char *nomfichier);
28     virtual std::string info_element3(FEM_MAILLAGE *fem, FEM_ELEMENT3* ele);
29     virtual void info_element3(FEM_MAILLAGE *fem,char *nomfichier);
30    
31     private:
32     virtual std::string info_noeud(FEM_MAILLAGE *fem, FEM_NOEUD* no,int numno,bool avectitre);
33     virtual std::string info_element1(FEM_MAILLAGE *fem, FEM_ELEMENT1* ele,int numno,bool avectitre);
34     virtual std::string info_element2(FEM_MAILLAGE *fem, FEM_ELEMENT2* ele,int numno,bool avectitre);
35     virtual std::string info_element3(FEM_MAILLAGE *fem, FEM_ELEMENT3* ele,int numno,bool avectitre);
36    
37    
38    
39     private:
40    
41    
42    
43     };
44    
45     //---------------------------------------------------------------------------
46     #endif