diff --git a/include/gepetto/viewer/corba/client.hh b/include/gepetto/viewer/corba/client.hh index 2b7aa181178876abda09cfb34a8e60918f15aec5..375e6f95126f93f45460d3e9a9f27b6f7d95a45f 100644 --- a/include/gepetto/viewer/corba/client.hh +++ b/include/gepetto/viewer/corba/client.hh @@ -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 diff --git a/src/client-cpp.cc b/src/client-cpp.cc index 395e6f0d8daf2d6c1ca56a6893e89f35f888f821..d862660190fc6ae51160a027e5a8ed1d994dd4c4 100644 --- a/src/client-cpp.cc +++ b/src/client-cpp.cc @@ -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