Skip to content
Snippets Groups Projects
Commit cc857b68 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Update class ClientCpp

parent ad883677
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,9 @@ public:
bool setWireFrameMode(const char* nodeName, const char* wireFrameMode) ;
bool setLightingMode(const char* nodeName, const char* lightingMode) ;
bool startCapture (const WindowID windowId, const char* filename, const char* extension);
bool stopCapture (const WindowID windowId);
bool writeNodeFile (const WindowID windowId, const char* filename);
}; //end of class ClientCpp
} //end of namespace corbaserver
......
......@@ -211,5 +211,20 @@ bool ClientCpp::setLightingMode(const char* nodeName, const char* lightingMode)
return manager_->setLightingMode(nodeName, lightingMode);
}
bool ClientCpp::startCapture (const WindowID windowId, const char* filename, const char* extension)
{
return manager_->startCapture (windowId, filename, extension);
}
bool ClientCpp::stopCapture (const WindowID windowId)
{
return manager_->stopCapture (windowId);
}
bool ClientCpp::writeNodeFile (const WindowID windowId, const char* filename)
{
return manager_->writeNodeFile (windowId, filename);
}
} // end of namespace corbaserver
} // end of namespace graphics
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment