summaryrefslogtreecommitdiff
path: root/src/configfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/configfile.h')
-rw-r--r--src/configfile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/configfile.h b/src/configfile.h
index 1513897..0934f46 100644
--- a/src/configfile.h
+++ b/src/configfile.h
@@ -33,6 +33,7 @@
class ConfigFile
{
public:
+ // TODO: west-const
ConfigFile(std::string const& filename);
virtual ~ConfigFile();
@@ -47,6 +48,7 @@ protected:
std::string filename;
std::fstream current_file;
+ // TODO: Does this have to be virtual?
virtual bool open(std::ios_base::openmode mode);
std::string readLine();
bool parseLine(const std::string& line);