SHAPER  9.12.0
GeomAlgoAPI_Tools.h
1 // Copyright (C) 2014-2023 CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 
20 #ifndef GEOMALGOAPI_TOOLS_H_
21 #define GEOMALGOAPI_TOOLS_H_
22 
23 #include <GeomAlgoAPI.h>
24 
25 #include <memory>
26 #include <string>
27 
29 
30 namespace GeomAlgoAPI_Tools {
32 enum BOPType {
33  BOOL_CUT,
34  BOOL_FUSE,
35  BOOL_COMMON,
36  BOOL_PARTITION
37 };
38 
43 class Localizer
44 {
45 public:
46  GEOMALGOAPI_EXPORT Localizer();
47  GEOMALGOAPI_EXPORT ~Localizer();
48 private:
49  std::string myCurLocale;
50 };
51 
56 class File_Tools {
57 public:
61  GEOMALGOAPI_EXPORT static std::string extension(const std::string& theFileName);
65  GEOMALGOAPI_EXPORT static std::string name(const std::string& theFileName);
69  GEOMALGOAPI_EXPORT static std::string path(const std::string& theFileName);
70 };
71 
76 class AlgoError {
77 public:
84  GEOMALGOAPI_EXPORT static bool isAlgorithmFailed(
85  const std::shared_ptr<GeomAlgoAPI_MakeShape>& theAlgorithm,
86  const std::string& theFeature,
87  std::string& theError);
88 };
89 
90 } // GeomAlgoAPI_Tools
91 
92 #endif /* GEOMALGOAPI_TOOLS_H_ */
Interface to the root class of all topological shapes constructions.
Definition: GeomAlgoAPI_MakeShape.h:35
Verify error in MakeShape algorithm.
Definition: GeomAlgoAPI_Tools.h:76
static GEOMALGOAPI_EXPORT bool isAlgorithmFailed(const std::shared_ptr< GeomAlgoAPI_MakeShape > &theAlgorithm, const std::string &theFeature, std::string &theError)
Verify MakeShape algorithm for failures.
Definition: GeomAlgoAPI_Tools.cpp:72
File tool.
Definition: GeomAlgoAPI_Tools.h:56
static GEOMALGOAPI_EXPORT std::string extension(const std::string &theFileName)
Returns an extension of theFileName.
Definition: GeomAlgoAPI_Tools.cpp:42
static GEOMALGOAPI_EXPORT std::string path(const std::string &theFileName)
Returns a directory path of theFileName.
Definition: GeomAlgoAPI_Tools.cpp:64
static GEOMALGOAPI_EXPORT std::string name(const std::string &theFileName)
Returns a name of theFileName.
Definition: GeomAlgoAPI_Tools.cpp:56
Localizer tool.
Definition: GeomAlgoAPI_Tools.h:44