Salome HOME
Unit test for ConnectorAPI/ConnectorAPI_Connector.cpp
[modules/shaper.git] / src / ConnectorAPI / ConnectorAPI_Connector.cpp
1 // Name   : ConnectorAPI_Connector.cpp
2 // Purpose: 
3 //
4 // History:
5 // 16/06/16 - Sergey POKHODENKO - Creation of the file
6
7 //--------------------------------------------------------------------------------------
8 #include "ConnectorAPI_Connector.h"
9 //--------------------------------------------------------------------------------------
10 #include <ModelAPI_Document.h>
11 #include <ModelAPI_Feature.h>
12 //--------------------------------------------------------------------------------------
13 void exportToGEOM(const std::shared_ptr<ModelAPI_Document> & thePart)
14 {
15   // TODO(spo): check that thePart is not empty
16   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature("ExportToGEOM");
17 }