Code: Select all
g++ -Wall -pipe -fno-exceptions -fno-rtti -fstrict-aliasing -g -D_DEBUG -I../../include -Izlib -Ijpeglib -Ilibpng -I/usr/X11R6/include -DIRRLICHT_EXPORTS=1 -c -o CIrrDeviceStub.o CIrrDeviceStub.cpp
CIrrDeviceStub.cpp: In constructor 'irr::CIrrDeviceStub::CIrrDeviceStub(const irr::SIrrlichtCreationParameters&)':
CIrrDeviceStub.cpp:25:2: error: expected '{' before 'FileSystem'
CIrrDeviceStub.cpp: At global scope:
CIrrDeviceStub.cpp:25:12: error: expected constructor, destructor, or type conversion before '(' token
CIrrDeviceStub.cpp:429:1: error: expected '}' at end of input
make: *** [CIrrDeviceStub.o] Error 1
Code: Select all
CIrrDeviceStub::CIrrDeviceStub(const SIrrlichtCreationParameters& params)
: IrrlichtDevice(), VideoDriver(0), GUIEnvironment(0), SceneManager(0),
Timer(0), CursorControl(0), UserReceiver(params.EventReceiver), Logger(0), Operator(0),
Randomizer(0), FileSystem(0), InputReceivingSceneManager(0),
VideoModeList(0), CreationParams(params), Close(false)
FileSystem(0), InputReceivingSceneManager(0), VideoModeList(0),
CreationParams(params), Close(false)
{
Code: Select all
CIrrDeviceStub::CIrrDeviceStub(const SIrrlichtCreationParameters& params)
: IrrlichtDevice(), VideoDriver(0), GUIEnvironment(0), SceneManager(0),
Timer(0), CursorControl(0), UserReceiver(params.EventReceiver), Logger(0), Operator(0),
Randomizer(0), FileSystem(0), InputReceivingSceneManager(0),
VideoModeList(0), CreationParams(params), Close(false)
{