SyntaxTutor 1.0.4
Educational app designed to help compiler students understand LL(1) and SLR(1) parsing algorithms.
Loading...
Searching...
No Matches
appversion.h
Go to the documentation of this file.
1#ifndef APPVERSION_H
2#define APPVERSION_H
3
4#include <QString>
5
7inline QString current() {
8 return QStringLiteral("1.0.4");
9}
10
11inline const char* raw() {
12 return "1.0.4";
13}
14} // namespace SyntaxTutor::Version
15#endif // APPVERSION_H
Definition appversion.h:6
QString current()
Definition appversion.h:7
const char * raw()
Definition appversion.h:11