Skip to content

Commit

Permalink
updated name of namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
davidegorbani committed Oct 30, 2023
1 parent 97b8211 commit 919d104
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion servers/HumanDynamics_nws_yarp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: BSD-3-Clause

yarp_prepare_plugin(human_dynamics_nws_yarp
TYPE hde::wrappers::HumanDynamics_nws_yarp
TYPE hde::servers::HumanDynamics_nws_yarp
INCLUDE HumanDynamics_nws_yarp.h
CATEGORY device
ADVANCED
Expand Down
2 changes: 1 addition & 1 deletion servers/HumanDynamics_nws_yarp/HumanDynamics_nws_yarp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const std::string DeviceName = "HumanDynamics_nws_yarp";
const std::string LogPrefix = DeviceName + " :";
constexpr double DefaultPeriod = 0.01;

using namespace hde::wrappers;
using namespace hde::servers;

class HumanDynamics_nws_yarp::impl
{
Expand Down
6 changes: 3 additions & 3 deletions servers/HumanDynamics_nws_yarp/HumanDynamics_nws_yarp.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
#include <memory>

namespace hde {
namespace wrappers {
namespace servers {
class HumanDynamics_nws_yarp;
} // namespace wrappers
} // namespace servers
} // namespace hde

class hde::wrappers::HumanDynamics_nws_yarp final
class hde::servers::HumanDynamics_nws_yarp final
: public yarp::dev::DeviceDriver
, public yarp::dev::IWrapper
, public yarp::dev::IMultipleWrapper
Expand Down
2 changes: 1 addition & 1 deletion servers/HumanState_nws_yarp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: BSD-3-Clause

yarp_prepare_plugin(human_state_nws_yarp
TYPE hde::wrappers::HumanState_nws_yarp
TYPE hde::servers::HumanState_nws_yarp
INCLUDE HumanState_nws_yarp.h
CATEGORY device
ADVANCED
Expand Down
2 changes: 1 addition & 1 deletion servers/HumanState_nws_yarp/HumanState_nws_yarp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const std::string DeviceName = "HumanState_nws_yarp";
const std::string LogPrefix = DeviceName + " :";
constexpr double DefaultPeriod = 0.01;

using namespace hde::wrappers;
using namespace hde::servers;

class HumanState_nws_yarp::impl
{
Expand Down
6 changes: 3 additions & 3 deletions servers/HumanState_nws_yarp/HumanState_nws_yarp.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
#include <memory>

namespace hde {
namespace wrappers {
namespace servers {
class HumanState_nws_yarp;
} // namespace wrappers
} // namespace servers
} // namespace hde

class hde::wrappers::HumanState_nws_yarp final
class hde::servers::HumanState_nws_yarp final
: public yarp::dev::DeviceDriver
, public yarp::dev::IWrapper
, public yarp::dev::IMultipleWrapper
Expand Down
2 changes: 1 addition & 1 deletion servers/HumanWrench_nws_yarp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: BSD-3-Clause

yarp_prepare_plugin(human_wrench_nws_yarp
TYPE hde::wrappers::HumanWrench_nws_yarp
TYPE hde::servers::HumanWrench_nws_yarp
INCLUDE HumanWrench_nws_yarp.h
CATEGORY device
ADVANCED
Expand Down
2 changes: 1 addition & 1 deletion servers/HumanWrench_nws_yarp/HumanWrench_nws_yarp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const std::string DeviceName = "HumanWrench_nws_yarp";
const std::string LogPrefix = DeviceName + " :";
constexpr double DefaultPeriod = 0.01;

using namespace hde::wrappers;
using namespace hde::servers;

class HumanWrench_nws_yarp::impl
{
Expand Down
6 changes: 3 additions & 3 deletions servers/HumanWrench_nws_yarp/HumanWrench_nws_yarp.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
#include <memory>

namespace hde {
namespace wrappers {
namespace servers {
class HumanWrench_nws_yarp;
} // namespace wrappers
} // namespace servers
} // namespace hde

class hde::wrappers::HumanWrench_nws_yarp final
class hde::servers::HumanWrench_nws_yarp final
: public yarp::dev::DeviceDriver
, public yarp::dev::IWrapper
, public yarp::dev::IMultipleWrapper
Expand Down
2 changes: 1 addition & 1 deletion servers/WearableTargets_nws_yarp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: BSD-3-Clause

yarp_prepare_plugin(wearable_targets_nws_yarp
TYPE hde::wrappers::WearableTargets_nws_yarp
TYPE hde::servers::WearableTargets_nws_yarp
INCLUDE WearableTargets_nws_yarp.h
CATEGORY device
ADVANCED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const std::string DeviceName = "WearableTargets_nws_yarp";
const std::string LogPrefix = DeviceName + " :";
constexpr double DefaultPeriod = 0.01;

using namespace hde::wrappers;
using namespace hde::servers;

// =======
// Helpers
Expand Down
6 changes: 3 additions & 3 deletions servers/WearableTargets_nws_yarp/WearableTargets_nws_yarp.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
#include <memory>

namespace hde {
namespace wrappers {
namespace servers {
class WearableTargets_nws_yarp;
} // namespace wrappers
} // namespace servers
} // namespace hde

class hde::wrappers::WearableTargets_nws_yarp final
class hde::servers::WearableTargets_nws_yarp final
: public yarp::dev::DeviceDriver
, public yarp::dev::IWrapper
, public yarp::dev::IMultipleWrapper
Expand Down

0 comments on commit 919d104

Please sign in to comment.