File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -36,19 +36,19 @@ namespace dynamicgraph {
36
36
std::vector<double > values_;
37
37
38
38
public:
39
- NamedVector () {};
40
- ~NamedVector () {};
39
+ NamedVector () {}
40
+ ~NamedVector () {}
41
41
42
- const std::string & getName ()
42
+ const std::string & getName () const
43
43
{ return name_;}
44
44
45
45
void setName (const std::string & aname)
46
46
{ name_ = aname;}
47
47
48
- const std::vector<double > & getValues ()
48
+ const std::vector<double > & getValues () const
49
49
{ return values_;}
50
50
51
- void setValues (std::vector<double > values)
51
+ void setValues (const std::vector<double > & values)
52
52
{ values_ = values;}
53
53
54
54
};
@@ -59,9 +59,9 @@ namespace dynamicgraph {
59
59
{
60
60
public:
61
61
62
- AbstractSotExternalInterface (){};
62
+ AbstractSotExternalInterface (){}
63
63
64
- virtual ~AbstractSotExternalInterface (){};
64
+ virtual ~AbstractSotExternalInterface (){}
65
65
66
66
virtual void setupSetSensors (std::map<std::string,SensorValues> &sensorsIn)=0;
67
67
You can’t perform that action at this time.
0 commit comments