-
Notifications
You must be signed in to change notification settings - Fork 0
/
cppbrain.h
54 lines (45 loc) · 1.1 KB
/
cppbrain.h
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
// Creator: Davy (Dawei) Chen
// Time: August 8th, 2020
// Email: [email protected]
#ifndef SWT_CPP_BRAIN_H
#define SWT_CPP_BRAIN_H
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <typeinfo>
#include "./modules/data.h"
#include "./modules/common.h"
#include "./modules/cppbrainx.h"
#include "./modules/cppbrainxx.h"
namespace swt
{
/**
* CPP-BRAIN helps you enjoy C++ coding a bit more :)
* CPP-BRAIN library consists modules of 'swt::brain', 'swt::brainx' and 'swt::brainxx'
* - Created by Davy Chen
* - Since August 8th, 2020
* - In the hot weather of Guangzhou
*/
class brain: public CommonComponents
{
public:
/**
* @brief Print Help information of module 'swt::brain' to console.
*/
static void help();
/**
* @brief Print Version information to console.
*/
static void version();
};
void brain::help()
{
DataManager::help_();
}
void brain::version()
{
DataManager::version();
}
};
#endif // SWT_CPP_BRAIN_H