-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCore.hpp
More file actions
29 lines (25 loc) · 581 Bytes
/
Core.hpp
File metadata and controls
29 lines (25 loc) · 581 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
//
// Core.hpp
// JoraLang
//
// Created by Pierre-Henry Soria on 31/07/2016.
// Copyright © 2016 Pierre-Henry Soria. All rights reserved.
//
#ifndef Core_hpp
#define Core_hpp
#include <iostream>
namespace JoraLang
{
class Core
{
public:
static const char* VERSION;
static const std::string NAME;
static std::string softwareInfo();
static std::string softwareVersion();
static std::string showHelp();
static std::string showLicense();
static std::string showCredits();
};
}
#endif /* Core_hpp */