1 |
|
5 |
//------------------------------------------------------------
|
2 |
|
|
//------------------------------------------------------------
|
3 |
|
|
// MAGiC
|
4 |
|
|
// Jean Christophe Cuillière et Vincent FRANCOIS
|
5 |
|
|
// Département de Génie Mécanique - UQTR
|
6 |
|
|
//------------------------------------------------------------
|
7 |
|
|
// Le projet MAGIC est un projet de recherche du département
|
8 |
|
|
// de génie mécanique de l'Université du Québec à
|
9 |
|
|
// Trois Rivières
|
10 |
|
|
// Les librairies ne peuvent être utilisées sans l'accord
|
11 |
|
|
// des auteurs (contact : francois@uqtr.ca)
|
12 |
|
|
//------------------------------------------------------------
|
13 |
|
|
//------------------------------------------------------------
|
14 |
|
|
//
|
15 |
|
|
// sat_shell.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H24
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
#ifndef sat_SHELLH
|
24 |
|
|
#define sat_SHELLH
|
25 |
|
|
//---------------------------------------------------------------------------
|
26 |
|
|
#ifdef WINDOWS_VERSION
|
27 |
|
|
#ifdef BUILT_DLL_SATLIB
|
28 |
|
|
#define DLLPORTSAT __declspec(dllexport)
|
29 |
|
|
#else
|
30 |
|
|
#define DLLPORTSAT __declspec(dllimport)
|
31 |
|
|
#endif
|
32 |
|
|
#else
|
33 |
|
|
#define DLLPORTSAT
|
34 |
|
|
#endif
|
35 |
|
|
|
36 |
|
|
#include "sat_identificateur.h"
|
37 |
|
|
|
38 |
|
|
class DLLPORTSAT SAT_SHELL:public SAT_IDENTIFICATEUR
|
39 |
|
|
{
|
40 |
|
|
public:
|
41 |
|
|
SAT_SHELL(unsigned long num);
|
42 |
|
|
SAT_SHELL();
|
43 |
|
|
virtual ~SAT_SHELL();
|
44 |
|
|
|
45 |
|
|
class SAT_ATTRIB* attrib;
|
46 |
|
|
class SAT_SHELL* next_shell;
|
47 |
|
|
class SAT_SUBSHELL* first_subshell;
|
48 |
|
|
class SAT_FACE* first_face;
|
49 |
|
|
class SAT_LUMP* owning_lump;
|
50 |
|
|
};
|
51 |
|
|
|
52 |
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
|
|
#endif
|