-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathflauncher.cpp
More file actions
62 lines (49 loc) · 799 Bytes
/
flauncher.cpp
File metadata and controls
62 lines (49 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "flauncher.h"
FLauncher::FLauncher()
{
dbId = -1;
}
FLauncher::FLauncher(QString name, QString path, QString args)
{
this->name = name, this->path = path, this->args = args;
}
QString FLauncher::getName()
{
return name;
}
void FLauncher::setName(QString newName)
{
name = newName;
}
QString FLauncher::getPath()
{
return path;
}
void FLauncher::setPath(QString newPath)
{
path = newPath;
}
QString FLauncher::getArgs()
{
return args;
}
QString FLauncher::getFileEndings()
{
return FileEndings;
}
void FLauncher::setArgs(QString newArgs)
{
args = newArgs;
}
int FLauncher::getDbId()
{
return dbId;
}
void FLauncher::setDbId(int newId)
{
dbId = newId;
}
void FLauncher::setFileEndings(QString suffixes)
{
FileEndings = suffixes;
}