54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
/*******************************************************************************
|
|
* *
|
|
* Société de Transports de Montréal. *
|
|
* 2012 *
|
|
* *
|
|
* Projet Zones Tests *
|
|
* *
|
|
* *
|
|
* *
|
|
*******************************************************************************/
|
|
/*
|
|
Description:
|
|
Description du fichier si nécessaire.
|
|
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
/* Revision:
|
|
### 20121213 JFM
|
|
Verision d'origine.
|
|
|
|
### YYYYMMDD Description du besoin ou du bug
|
|
Description du changement.
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SEAIOLIBINTERFACE_H
|
|
#define SEAIOLIBINTERFACE_H
|
|
#include "GlobalDefine.h"
|
|
#include "seamaxlin.h"
|
|
#include <QString>
|
|
|
|
class CSeaIOLibInterface
|
|
{
|
|
public:
|
|
|
|
CSeaIOLibInterface();
|
|
~CSeaIOLibInterface();
|
|
|
|
unsigned int OpenSeaMaxInterface(QString MasterModuleIP);
|
|
CSeaMaxLin * GetSeaMaxInterfacePtr(void);
|
|
void CloseSeaMaxInterface();
|
|
|
|
private:
|
|
|
|
CSeaMaxLin mSeaMaxInterface;
|
|
bool mIsOpened;
|
|
|
|
|
|
};
|
|
|
|
#endif // SEAIOLIBINTERFACE_H
|