ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/step/src/stedgecurve.h
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (17 years, 11 months ago)
Content type: text/plain
Original Path: magic/lib/step/step/src/stedgecurve.h
File size: 1811 byte(s)
Log Message:

File Contents

# User Rev Content
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     // stedgecurve.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H24
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef _HEADER_STEDGECURVE_
24     #define _HEADER_STEDGECURVE_
25    
26     #ifdef WINDOWS_VERSION
27     #ifdef BUILT_DLL_STEPLIB
28     #define DLLPORTSTEP __declspec(dllexport)
29     #else
30     #define DLLPORTSTEP __declspec(dllimport)
31     #endif
32     #else
33     #define DLLPORTSTEP
34     #endif
35    
36    
37     #include "st_ident.h"
38    
39    
40    
41    
42    
43     class DLLPORTSTEP ST_EDGE_CURVE : public ST_IDENTIFICATEUR
44     {
45     public :
46     ST_EDGE_CURVE(long LigneCourante,std::string idori,long curve,long som1,long som2,int sens);
47     virtual void est_util(class ST_GESTIONNAIRE* gest);
48    
49    
50     virtual long get_id_curve(void) ;
51     virtual long get_id_sommet1(void) ;
52     virtual long get_id_sommet2(void) ;
53     virtual int get_orientation(void) ;
54     private:
55     long id_curve;
56     long id_sommet1;
57     long id_sommet2;
58     int orientation;
59    
60     };
61    
62    
63     #endif