ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mtu/src/occ_coquille.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (13 months, 2 weeks ago) by francois
Content type: text/plain
File size: 2299 byte(s)
Log Message:
compatibilité Ubuntu 22.04
Suppression des refeences à Windows
Ajout d'une banière

File Contents

# User Rev Content
1 francois 1158 //####//------------------------------------------------------------
2     //####//------------------------------------------------------------
3     //####// MAGiC
4     //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5     //####// Departement de Genie Mecanique - UQTR
6     //####//------------------------------------------------------------
7     //####// MAGIC est un projet de recherche de l equipe ERICCA
8     //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9     //####// http://www.uqtr.ca/ericca
10     //####// http://www.uqtr.ca/
11     //####//------------------------------------------------------------
12     //####//------------------------------------------------------------
13     //####//
14     //####// occ_coquille.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:53 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22    
23     /*2017*/
24 couturad 907 #include "gestionversion.h"
25     #ifdef ALL_OCC
26     #ifndef _OCCCOQUILLE_
27     #define _OCCCOQUILLE_
28    
29    
30 francois 1158
31 couturad 907 #include "mg_coquille.h"
32     #include "occ_fonction.h"
33     #include "occ_fonction_v2015.h"
34     #include "occ_fonction_v2017.h"
35     #include "TopoDS_Shell.hxx"
36 francois 1158 class OCC_COQUILLE:public MG_COQUILLE
37 couturad 907 {
38     public:
39    
40     OCC_COQUILLE(std::string idori,unsigned long num,class MG_VOLUME* mgvol,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
41     OCC_COQUILLE(std::string idori,unsigned long num,class MG_COQUE* mgcoq,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
42     OCC_COQUILLE(std::string idori,class MG_VOLUME* mgvol,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
43     OCC_COQUILLE(std::string idori,class MG_COQUE* mgcoq,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
44     OCC_COQUILLE(std::string idori,unsigned long num,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
45     OCC_COQUILLE(std::string idori,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
46     OCC_COQUILLE(OCC_COQUILLE& mdd);
47     virtual ~OCC_COQUILLE();
48     TopoDS_Shell get_TopoDS_Shell(void);
49     void change_TopoDS_Shell(TopoDS_Shell shell);
50     virtual void enregistrer(std::ostream& o,double version);
51    
52     protected:
53     TopoDS_Shell m_shell;
54     OCC_FONCTION* m_occ_fonction;
55    
56     };
57    
58    
59     #endif
60 francois 1158 #endif