Salome HOME
Some corrections of import/export operations
[plugins/acisplugin.git] / src / ACISPlugin_IOperations.hxx
index 9a6c36737431bd052fc472dbd4df590e82d6a57d..6e17f9dd1cfc5a38057c1a08b049eb0787a0ea97 100644 (file)
 #ifndef _ACISPlugin_IOperations_HXX_
 #define _ACISPlugin_IOperations_HXX_
 
+// internal includes
+#include "ACISPlugin_Engine.hxx"
+
 // GEOM includes
 #include <GEOMImpl_IBaseIEOperations.hxx>
 
-class ACISPlugin_IOperations: public GEOMImpl_IBaseIEOperations
+class ACISPLUGINENGINE_EXPORT ACISPlugin_IOperations: public GEOMImpl_IBaseIEOperations
 {
 public:
-  Standard_EXPORT ACISPlugin_IOperations( GEOM_Engine*, int );
-  Standard_EXPORT ~ACISPlugin_IOperations();
+  ACISPlugin_IOperations( GEOM_Engine*, int );
+  ~ACISPlugin_IOperations();
 
-  Standard_EXPORT void ExportACIS( const Handle(GEOM_Object),
-                                   const TCollection_AsciiString& );
+  void ExportACIS( const Handle(GEOM_Object),
+                   const TCollection_AsciiString& );
 
-  Standard_EXPORT Handle(TColStd_HSequenceOfTransient) ImportACIS( const TCollection_AsciiString& );
+  Handle(TColStd_HSequenceOfTransient) ImportACIS( const TCollection_AsciiString& );
 };
 
 #endif