mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2013 by Roland Winklmeier *
|
|
* roland.m.winklmeier@googlemail.com *
|
|
* *
|
|
* For license information see LICENSE in the root folder of the *
|
|
* source code. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Lesser General Public License for more details. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef DRIVER_FSX_H
|
|
#define DRIVER_FSX_H
|
|
|
|
#include <blackmisc/context.h>
|
|
#include <blackcore/simulator.h>
|
|
|
|
class CDriverFSX : public BlackCore::ISimulator
|
|
{
|
|
public:
|
|
CDriverFSX();
|
|
|
|
virtual void setLibraryContext(BlackMisc::IContext *context);
|
|
|
|
virtual int init() { return 0; }
|
|
|
|
protected:
|
|
|
|
BlackMisc::CLibraryContext *m_libraryContext;
|
|
};
|
|
|
|
#endif // DRIVER_FSX_H
|