summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMaksym Telychko <maksym.telychko@globallogic.com>2019-06-12 15:22:41 +0300
committerMaksym Telychko <maksym.telychko@globallogic.com>2019-06-12 15:22:41 +0300
commit123aed7c4be0b88a4726cae5d722d74ebdf93782 (patch)
tree7923c2bd930ebd879e6d8e6f43dc988a409320c4 /include
parent5c8318bea803966f5b883c986919787e77e514a5 (diff)
downloadlibmts-io-123aed7c4be0b88a4726cae5d722d74ebdf93782.tar.gz
libmts-io-123aed7c4be0b88a4726cae5d722d74ebdf93782.tar.bz2
libmts-io-123aed7c4be0b88a4726cae5d722d74ebdf93782.zip
[MTS-MTQ] refactoring: using full qualified names for consts
Diffstat (limited to 'include')
-rw-r--r--include/mts/MTS_IO_CellularRadio.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/mts/MTS_IO_CellularRadio.h b/include/mts/MTS_IO_CellularRadio.h
index 0410e0d..acb235b 100644
--- a/include/mts/MTS_IO_CellularRadio.h
+++ b/include/mts/MTS_IO_CellularRadio.h
@@ -101,19 +101,19 @@ namespace MTS {
CODE getEcho(bool& bEnabled) override;
CODE setEcho(bool bEnabled = true) override;
CODE getStaticInformation(Json::Value& jData) override;
- CODE sendBasicCommand(const std::string& sCmd, int32_t timeoutMillis = 100, const char& ESC = CR) override;
+ CODE sendBasicCommand(const std::string& sCmd, int32_t timeoutMillis = 100, const char& ESC = ICellularRadio::CR) override;
std::string sendCommand(const std::string& sCmd,
const std::vector<std::string>& vBail = DEFAULT_BAIL_STRINGS,
int32_t timeoutMillis = 100,
- const char& ESC = CR) override;
+ const char& ESC = ICellularRadio::CR) override;
std::string sendCommand(const std::string& sCmd,
IsNeedMoreData& isNeedMoreData,
int32_t timeoutMillis = 100,
- const char& ESC = CR) override;
+ const char& ESC = ICellularRadio::CR) override;
protected:
@@ -130,9 +130,9 @@ namespace MTS {
public:
RadioBandMap()
{
- m_sChannel = CellularRadio::VALUE_UNKNOWN;
+ m_sChannel = ICellularRadio::VALUE_UNKNOWN;
m_iChannel = 0;
- m_sRadioType = CellularRadio::VALUE_UNKNOWN;
+ m_sRadioType = ICellularRadio::VALUE_UNKNOWN;
}
RadioBandMap(const std::string &channel, const std::string &radioType) :