diff --git a/modules/sensor/include/visp3/sensor/vpLaserScan.h b/modules/sensor/include/visp3/sensor/vpLaserScan.h index 2c659552f2..491ee8b587 100644 --- a/modules/sensor/include/visp3/sensor/vpLaserScan.h +++ b/modules/sensor/include/visp3/sensor/vpLaserScan.h @@ -58,7 +58,7 @@ Other data as the start/stop angle, the start/end timestamp are also considered. */ -class VISP_EXPORT vpLaserScan +class /*VISP_EXPORT*/ vpLaserScan { public: /*! Default constructor that initialize all the internal variable to zero. diff --git a/modules/sensor/include/visp3/sensor/vpLaserScanner.h b/modules/sensor/include/visp3/sensor/vpLaserScanner.h index 5d947781b2..2800588bb4 100644 --- a/modules/sensor/include/visp3/sensor/vpLaserScanner.h +++ b/modules/sensor/include/visp3/sensor/vpLaserScanner.h @@ -51,16 +51,16 @@ \brief Class that defines a generic laser scanner. */ -class VISP_EXPORT vpLaserScanner +class /*VISP_EXPORT*/ vpLaserScanner { public: /*! Default constructor that initialize all the internal variable to zero. */ - vpLaserScanner() : ip("null"), port(0){}; + vpLaserScanner() : ip("null"), port(0) { }; /*! Copy constructor. */ - vpLaserScanner(const vpLaserScanner &scanner) : ip(scanner.ip), port(scanner.port){}; + vpLaserScanner(const vpLaserScanner &scanner) : ip(scanner.ip), port(scanner.port) { }; /*! Default destructor that does nothing. */ - virtual ~vpLaserScanner(){}; + virtual ~vpLaserScanner() { }; /*! Set the Ethernet address of the laser. */ void setIpAddress(std::string ip_address) { this->ip = ip_address; };