mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-24 06:25:37 +08:00
blacklib folder reorganisation
This commit is contained in:
35
src/driver/fsx/driver_fsx.h
Normal file
35
src/driver/fsx/driver_fsx.h
Normal file
@@ -0,0 +1,35 @@
|
||||
/***************************************************************************
|
||||
* 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
|
||||
Reference in New Issue
Block a user