- 3.0.2 models module.
HyAUrdfNames.h
Go to the documentation of this file.
1 /**********************************************************************************************************************
2 This file is part of the Control Toolbox (https://github.com/ethz-adrl/control-toolbox), copyright by ETH Zurich.
3 Licensed under the BSD-2 license (see LICENSE file in main directory)
4 **********************************************************************************************************************/
5 
6 #pragma once
7 
8 namespace ct {
9 namespace models {
10 namespace HyA {
11 
12 const std::vector<std::string>& urdfJointNames()
13 {
14  static std::vector<std::string> urdfJointNames{
15  "hya_saa_joint", "hya_sfe_joint", "hya_hr_joint", "hya_efe_joint", "hya_wr_joint", "hya_wfe_joint",
16  };
17 
18  return urdfJointNames;
19 }
20 }
21 }
22 }
const std::vector< std::string > & urdfJointNames()
Definition: HyAUrdfNames.h:12