diff options
| author | Andrii Pientsov <andrii.pientsov@globallogic.com> | 2020-02-17 17:05:22 +0200 | 
|---|---|---|
| committer | Andrii Pientsov <andrii.pientsov@globallogic.com> | 2020-02-17 17:05:22 +0200 | 
| commit | a19364df47f14bff07f8f1ade616fe147f910838 (patch) | |
| tree | d5d27a332d6ddf68a694260876a6ba4b5ad40337 /src/MTS_IO_CellularRadioFactory.cpp | |
| parent | f3425f9f5b32060895b7cd33d337b7ac50f9e714 (diff) | |
| download | libmts-io-a19364df47f14bff07f8f1ade616fe147f910838.tar.gz libmts-io-a19364df47f14bff07f8f1ade616fe147f910838.tar.bz2 libmts-io-a19364df47f14bff07f8f1ade616fe147f910838.zip | |
MTX-3211 Remove the code that is used to support ME910C1-NV and ME910C1-NA
Diffstat (limited to 'src/MTS_IO_CellularRadioFactory.cpp')
| -rw-r--r-- | src/MTS_IO_CellularRadioFactory.cpp | 12 | 
1 files changed, 0 insertions, 12 deletions
| diff --git a/src/MTS_IO_CellularRadioFactory.cpp b/src/MTS_IO_CellularRadioFactory.cpp index b86f207..08c6315 100644 --- a/src/MTS_IO_CellularRadioFactory.cpp +++ b/src/MTS_IO_CellularRadioFactory.cpp @@ -31,8 +31,6 @@  #include <mts/MTS_IO_LE910EU1Radio.h>  #include <mts/MTS_IO_LE910C1NSRadio.h>  #include <mts/MTS_IO_LE910C1APRadio.h> -#include <mts/MTS_IO_ME910C1NARadio.h> -#include <mts/MTS_IO_ME910C1NVRadio.h>  #include <mts/MTS_IO_LE866A1JSRadio.h>  #include <mts/MTS_IO_ME910C1WWRadio.h>  #include <mts/MTS_IO_GE910Radio.h> @@ -56,8 +54,6 @@ CellularRadioFactory::CellularRadioFactory() {      m_mCreationMap[LE910EU1Radio::MODEL_NAME]     = &CellularRadioFactory::createLE910EU1;      m_mCreationMap[LE910C1NSRadio::MODEL_NAME]    = &CellularRadioFactory::createLE910C1NS;      m_mCreationMap[LE910C1APRadio::MODEL_NAME]    = &CellularRadioFactory::createLE910C1AP; -    m_mCreationMap[ME910C1NARadio::MODEL_NAME]    = &CellularRadioFactory::createME910C1NA; -    m_mCreationMap[ME910C1NVRadio::MODEL_NAME]    = &CellularRadioFactory::createME910C1NV;      m_mCreationMap[ME910C1WWRadio::MODEL_NAME]    = &CellularRadioFactory::createME910C1WW;      m_mCreationMap[GE910Radio::MODEL_NAME]        = &CellularRadioFactory::createGE910;      m_mCreationMap[DE910Radio::MODEL_NAME]        = &CellularRadioFactory::createDE910; @@ -175,14 +171,6 @@ ICellularRadio* CellularRadioFactory::createLE910C1AP(const std::string& sPort)      return new LE910C1APRadio(sPort);  } -ICellularRadio* CellularRadioFactory::createME910C1NA(const std::string& sPort) const { -    return new ME910C1NARadio(sPort); -} - -ICellularRadio* CellularRadioFactory::createME910C1NV(const std::string& sPort) const { -    return new ME910C1NVRadio(sPort); -} -  ICellularRadio* CellularRadioFactory::createME910C1WW(const std::string& sPort) const {      return new ME910C1WWRadio(sPort);  } | 
