projects
/
sven
/
vym.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add build-deps libcups2-dev, libxkbcommon-dev.
[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