]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - src/macros.h
New upstream version 2.9.22
[sven/vym.git] / src / macros.h
diff --git a/src/macros.h b/src/macros.h
new file mode 100644 (file)
index 0000000..a827ac4
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef MACROS_H
+#define MACROS_H
+
+#include <QString>
+
+class Macros {
+  public:
+    QString getPath();
+    bool setPath(const QString&);
+    bool pathExists(const QString&);
+    QString get();
+    QString help();
+
+  private:
+    QString macrosPath;
+};
+#endif