-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSRL.h
40 lines (30 loc) · 1.11 KB
/
SRL.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
// ///////////////////////////////////////////////////////////////// //
// *SRL-C++ 11 Library
// *Copyright(c) 2019 Mbadiwe Nnaemeka Ronald
// *Github Repository <https://github.com/ron4fun>
// *Distributed under the MIT software license, see the accompanying file LICENSE
// *or visit http ://www.opensource.org/licenses/mit-license.php.
// *Acknowledgements:
// ** //
// *Thanks to Simple Regex (https://simple-regex.com/) for his creative
// *development of this library in Javascript
// ////////////////////////////////////////////////////// ///////////////
#ifndef SRL_H
#define SRL_H
#include <string>
#include "Builder.h"
#include "Language\Interpreter.h"
using namespace std;
typedef SRLBuilder::Builder Builder;
/**
* SRL facade for SRL Builder and SRL Language.
*
* @param {string} query
* @return {Builder}
*/
Builder SRL(const string &query="")
{
if (!query.empty()) return Interpreter(query).getBuilder();
return Builder();
} // end function SRL
#endif // !SRL_H