Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / ConnectorAPI / ConnectorAPI_Connector.cpp
1 // Copyright (C) 2014-2016 CEA/DEN, EDF R&D
2
3 // Name   : ConnectorAPI_Connector.cpp
4 // Purpose:
5 //
6 // History:
7 // 16/06/16 - Sergey POKHODENKO - Creation of the file
8
9 //--------------------------------------------------------------------------------------
10 #include "ConnectorAPI_Connector.h"
11 //--------------------------------------------------------------------------------------
12 #include <ModelAPI_Document.h>
13 #include <ModelAPI_Feature.h>
14 //--------------------------------------------------------------------------------------
15 void exportToGEOM(const std::shared_ptr<ModelAPI_Document> & thePart)
16 {
17   // TODO(spo): check that thePart is not empty
18   std::shared_ptr<ModelAPI_Feature> aFeature = thePart->addFeature("ExportToGEOM");
19 }