mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-10 22:15:34 +08:00
18 lines
259 B
C++
18 lines
259 B
C++
#ifndef DRIVER_FS9_H
|
|
#define DRIVER_FS9_H
|
|
|
|
#include <simulator.h>
|
|
|
|
class CDriverFS9 : public ISimulator
|
|
{
|
|
public:
|
|
CDriverFS9();
|
|
virtual int init() { return 1;}
|
|
|
|
protected:
|
|
|
|
BlackMisc::CLibraryContext *m_libraryContext;
|
|
};
|
|
|
|
#endif // DRIVER_FS9_H
|