Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: ConfigFile
ConfigurationFile.h
- Committer:
- 13075593
- Date:
- 2016-04-03
- Revision:
- 0:1405a58a7e8d
- Child:
- 1:5b6c5c2a33d0
File content as of revision 0:1405a58a7e8d:
#ifndef CONFIGURATION_FILE_H #define CONFIGURATION_FILE_H #include "mbed.h" #include "ConfigFile.h" #include "ConfigurationFile.h" #include "PC_Comm.h" #include <string> class ConfigurationFile{ public: ConfigurationFile(); ~ConfigurationFile(); void readServerEthernetConfiguration(); void readNodeEthernetConfiguration(); void readConfigurationFile(char *pathName); string getIP(); void setMask(); string getMask(); string getGateway(); string getURL(); private: ConfigFile cfg; Serial *pc; string ip; string mask; string gateway; string url; void setIP(); void setGateway(); void setURL(); }; #endif