Files
pilotclient/src/driver/fsx/driver_fsx.h
2013-03-11 20:41:29 +01:00

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