Skip to content
Snippets Groups Projects
Commit 7524beb3 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

mv 'class' declaration into methods (... while reading ...)

parent 579414af
No related branches found
No related tags found
No related merge requests found
......@@ -19,15 +19,8 @@
#include "PyGenVisitor.h"
#include "Types.h"
class IDistribution1D;
class GISASSimulation;
namespace Geometry {
class IShape2D;
}
namespace PyGenTools {
BA_CORE_API_ std::string genPyScript(GISASSimulation *simulation);
BA_CORE_API_ std::string genPyScript(class GISASSimulation* simulation);
BA_CORE_API_ std::string printBool(double value);
BA_CORE_API_ std::string printDouble(double input);
BA_CORE_API_ std::string printNm(double input);
......@@ -35,14 +28,12 @@ namespace PyGenTools {
BA_CORE_API_ std::string printDegrees(double input);
BA_CORE_API_ bool isSquare(double length1, double length2, double angle);
BA_CORE_API_ bool isHexagonal(double length1, double length2, double angle);
BA_CORE_API_ bool testPyScript(GISASSimulation *simulation);
BA_CORE_API_ std::string getRepresentation(const IDistribution1D *distribution);
BA_CORE_API_ std::string getRepresentation(const std::string &indent, const Geometry::IShape2D *ishape, bool mask_value);
BA_CORE_API_ bool testPyScript(class GISASSimulation* simulation);
BA_CORE_API_ std::string getRepresentation(const class IDistribution1D* distribution);
BA_CORE_API_ std::string getRepresentation(
const std::string &indent, const class Geometry::IShape2D* ishape, bool mask_value);
BA_CORE_API_ std::string printKvector(const kvector_t value);
BA_CORE_API_ bool isDefaultDirection(const kvector_t direction);
}
#endif // PYSCRIPTTOOLS_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment