diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-06 18:18:59 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-06 18:18:59 (GMT) |
commit | d27a20d01f3402c27465d46d9c970d4571e92958 (patch) | |
tree | 505b16d03605d06b43dabd84a94388ee017407ec /src/value.h | |
parent | 6bb261bcd5922c69770c27d25f43c7c315c101a4 (diff) |
Initial work: Created a Filename class
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/value.h b/src/value.h index fb6500c..f3a4fdf 100644 --- a/src/value.h +++ b/src/value.h @@ -4,6 +4,13 @@ #include <vector> #include <string> +class Filename : public std::string +{ +public: + Filename() : std::string() {} + Filename(const std::string &f) : std::string(f) {} +}; + class Value { public: |