ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mtu/src/occ_coque.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (13 months, 1 week ago) by francois
Content type: text/plain
File size: 1815 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_coque.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:55 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22     /*V2017*/
23 francois 1052 #include "gestionversion.h"
24     #ifdef ALL_OCC
25     #ifndef __OCCCOQUE_
26     #define __OCCCOQUE_
27    
28    
29 francois 1158
30 francois 1052 #include "mg_volume.h"
31     #include "occ_fonction.h"
32     #include "occ_fonction_v2015.h"
33     #include "occ_fonction_v2017.h"
34     #include "TopoDS_Shell.hxx"
35 francois 1158 class OCC_COQUE:public MG_COQUE
36 francois 1052 {
37     public:
38    
39     OCC_COQUE(std::string idori,unsigned long num,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
40     OCC_COQUE(std::string idori,TopoDS_Shell shell,OCC_FONCTION* occ_fonction);
41     OCC_COQUE(OCC_COQUE& mdd);
42     virtual ~OCC_COQUE();
43     TopoDS_Shell get_TopoDS_Shell(void);
44     void change_TopoDS_Shell(TopoDS_Shell shell);
45     virtual void enregistrer(std::ostream& o,double version);
46     protected:
47     TopoDS_Shell m_shell;
48     OCC_FONCTION* m_occ_fonction;
49     };
50    
51    
52     #endif
53     #endif