Hide visibility of classes
All checks were successful
Test And Build / Lint (push) Successful in 3s
Test And Build / Build (push) Successful in 15s

This commit is contained in:
2025-08-12 09:20:25 +02:00
parent 0005775c9d
commit bfd565aabd
4 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
#include "detectorTowerController.h" #include "detectorTowerController.h"
#include "turboPmacAxis.h" #include "turboPmacAxis.h"
class detectorTowerAngleAxis : public turboPmacAxis { class HIDDEN detectorTowerAngleAxis : public turboPmacAxis {
public: public:
/** /**
* @brief Construct a new detectorTowerAngleAxis * @brief Construct a new detectorTowerAngleAxis

View File

@@ -13,11 +13,11 @@
// Forward declaration of the axis classes to resolve the cyclic dependency // Forward declaration of the axis classes to resolve the cyclic dependency
// between the controller and the axis .h-file. See // between the controller and the axis .h-file. See
// https://en.cppreference.com/w/cpp/language/class. // https://en.cppreference.com/w/cpp/language/class.
class detectorTowerAngleAxis; class HIDDEN detectorTowerAngleAxis;
class detectorTowerLiftAxis; class HIDDEN detectorTowerLiftAxis;
class detectorTowerSupportAxis; class HIDDEN detectorTowerSupportAxis;
class detectorTowerController : public turboPmacController { class HIDDEN detectorTowerController : public turboPmacController {
public: public:
/** /**

View File

@@ -3,7 +3,7 @@
#include "detectorTowerController.h" #include "detectorTowerController.h"
#include "turboPmacAxis.h" #include "turboPmacAxis.h"
class detectorTowerLiftAxis : public turboPmacAxis { class HIDDEN detectorTowerLiftAxis : public turboPmacAxis {
public: public:
/** /**
* @brief Construct a new detectorTowerAngleAxis * @brief Construct a new detectorTowerAngleAxis

View File

@@ -7,7 +7,7 @@
* @brief Passive axis which is mostly controlled indirectly by the hardware * @brief Passive axis which is mostly controlled indirectly by the hardware
* *
*/ */
class detectorTowerSupportAxis : public turboPmacAxis { class HIDDEN detectorTowerSupportAxis : public turboPmacAxis {
public: public:
/** /**
* @brief Construct a new detectorTowerSupportAxis * @brief Construct a new detectorTowerSupportAxis