Hide visibility of classes to avoid symbol clashes
This commit is contained in:
Submodule sinqMotor updated: c65a8de5dd...c19e4845e4
@@ -25,8 +25,7 @@ extern "C" {
|
|||||||
* 172.23.243.156:1025)
|
* 172.23.243.156:1025)
|
||||||
* @return status
|
* @return status
|
||||||
*/
|
*/
|
||||||
epicsShareFunc int pmacAsynIPPortConfigure(const char *portName,
|
int HIDDEN pmacAsynIPPortConfigure(const char *portName, const char *hostInfo);
|
||||||
const char *hostInfo);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,9 +4,9 @@
|
|||||||
#include "turboPmacController.h"
|
#include "turboPmacController.h"
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
struct turboPmacAxisImpl;
|
struct HIDDEN turboPmacAxisImpl;
|
||||||
|
|
||||||
class turboPmacAxis : public sinqAxis {
|
class HIDDEN turboPmacAxis : public sinqAxis {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* @brief Construct a new turboPmacAxis
|
* @brief Construct a new turboPmacAxis
|
||||||
|
|||||||
@@ -15,11 +15,11 @@
|
|||||||
// Forward declaration of the controller class to resolve the cyclic dependency
|
// Forward declaration of the controller class 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 turboPmacAxis;
|
class HIDDEN turboPmacAxis;
|
||||||
|
|
||||||
struct turboPmacControllerImpl;
|
struct HIDDEN turboPmacControllerImpl;
|
||||||
|
|
||||||
class turboPmacController : public sinqController {
|
class HIDDEN turboPmacController : public sinqController {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* @brief Construct a new turboPmacController object. This function is meant
|
* @brief Construct a new turboPmacController object. This function is meant
|
||||||
|
|||||||
Reference in New Issue
Block a user