]> git.sven.stormbind.net Git - sven/vym.git/blob - src/macros.h
Add a README.source file to describe the tarball creation. Upstream commit d9d7b12a05...
[sven/vym.git] / src / macros.h
1 #ifndef MACROS_H
2 #define MACROS_H
3
4 #include <QString>
5
6 class Macros {
7   public:
8     QString getPath();
9     bool setPath(const QString&);
10     bool pathExists(const QString&);
11     QString get();
12     QString help();
13
14   private:
15     QString macrosPath;
16 };
17 #endif