Add defines surrounding classes definitions

This commit is contained in:
skv 2014-09-25 11:06:53 +04:00
parent 5e8d3800a1
commit b00939610a
3 changed files with 14 additions and 2 deletions

View File

@ -23,8 +23,8 @@
// File : Sketcher.hxx
// Author : Sergey KHROMOV
#ifndef SKETCHER_HXX
#define SKETCHER_HXX
#ifndef _SKETCHER_HXX_
#define _SKETCHER_HXX_
#if defined WIN32
# if defined SKETCHER_SALOME_EXPORTS || defined SKETCHER_EXPORTS || defined GEOMSketcher_EXPORTS || defined GEOMSKETCHER_EXPORTS

View File

@ -24,6 +24,10 @@
// Author : Damien COQUERET
#ifndef _Sketcher_Profile_HXX_
#define _Sketcher_Profile_HXX_
#include "Sketcher.hxx"
#include <TopoDS_Shape.hxx>
#include <TCollection_AsciiString.hxx>
@ -55,3 +59,5 @@ private:
private:
TCollection_AsciiString myCommand;
};
#endif

View File

@ -24,6 +24,10 @@
// Author : Sergey KHROMOV
#ifndef _Sketcher_Utils_HXX_
#define _Sketcher_Utils_HXX_
#include "Sketcher.hxx"
#include <gp_Pnt.hxx>
@ -95,3 +99,5 @@ public:
std::list <gp_Pnt> &thePoints);
};
#endif