1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| /*******************************************************************************
* NOM:
* ROLE:
* HISTORIQUE:
* 05/05/2001, xxx, initial version
*******************************************************************************/
#ifndef ANALYSE_H
#define ANALYSE_H
/*_____INCLUDE-FILES__________________________________________________________*/
namespace SpecificationLoader
{
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
using namespace System::IO;
/*_____GLOBAL-DEFINE__________________________________________________________*/
/*_____GLOBAL-TYPES___________________________________________________________*/
/*_____GLOBAL-DATA____________________________________________________________*/
/*_____GLOBAL-MACROS__________________________________________________________*/
/*_____GLOBAL-FUNCTIONS-PROTOTYPES____________________________________________*/
class CAnalysedSegment
{
CAnalysedSegment();
~CAnalysedSegment();
};
};
#endif /* ANALYSE_H */ |