Salome HOME
Issue #608: Usage of OCCT in interface -- Remove OCCT from *Import interfaces
[modules/shaper.git] / src / GeomAlgoAPI / GeomAlgoAPI_Tools.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:    GeomAlgoAPI_Tools.h
4 // Created: May 18, 2015
5 // Author:  Sergey POKHODENKO
6
7 #ifndef GEOMALGOAPI_TOOLS_H_
8 #define GEOMALGOAPI_TOOLS_H_
9
10 #include <GeomAlgoAPI.h>
11
12 #include <string>
13
14 namespace GeomAlgoAPI_Tools {
15
16 class GEOMALGOAPI_EXPORT Localizer
17 {
18 public:
19   Localizer();
20   ~Localizer();
21 private:
22   std::string myCurLocale;
23 };
24
25 class File_Tools {
26 public:
27   /**
28    * Returns an extension of theFileName
29    */
30   static std::string extension(const std::string& theFileName);
31   /**
32    * Returns a name of theFileName
33    */
34   static std::string name(const std::string& theFileName);
35 };
36
37 } // GeomAlgoAPI_Tools
38
39 #endif /* GEOMALGOAPI_TOOLS_H_ */