Add MobileGPS support for DMR.

This commit is contained in:
Jonathan Naylor
2018-11-06 12:14:57 +00:00
parent 2caa2e9a67
commit e847711d17
16 changed files with 255 additions and 12 deletions

8
Conf.h
View File

@@ -268,6 +268,10 @@ public:
bool getLockFileEnabled() const;
std::string getLockFileName() const;
// The Mobile GPS section
bool getMobileGPSEnabled() const;
std::string getMobileGPSAddress() const;
unsigned int getMobileGPSPort() const;
private:
std::string m_file;
@@ -481,6 +485,10 @@ private:
bool m_lockFileEnabled;
std::string m_lockFileName;
bool m_mobileGPSEnabled;
std::string m_mobileGPSAddress;
unsigned int m_mobileGPSPort;
};
#endif