mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 20:50:33 +00:00
Declare const member functions that do not modify the object
This commit is contained in:
parent
8ff1a816bb
commit
0f29352aa0
@ -107,17 +107,17 @@ public:
|
|||||||
|
|
||||||
void set_configuration(std::shared_ptr<ConfigurationInterface> configuration);
|
void set_configuration(std::shared_ptr<ConfigurationInterface> configuration);
|
||||||
|
|
||||||
unsigned int applied_actions()
|
unsigned int applied_actions() const
|
||||||
{
|
{
|
||||||
return applied_actions_;
|
return applied_actions_;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool connected()
|
bool connected() const
|
||||||
{
|
{
|
||||||
return connected_;
|
return connected_;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool running()
|
bool running() const
|
||||||
{
|
{
|
||||||
return running_;
|
return running_;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user