-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathincludes.hpp
More file actions
52 lines (34 loc) · 931 Bytes
/
includes.hpp
File metadata and controls
52 lines (34 loc) · 931 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
/**
RIGHT TO USE, DISTRIBUTE AND MODIFY
===================================
Copyright (C) 2015 Ganesh Prasad Sahoo - All Rights Reserved
You may use, distribute and modify this code under the Terms
of GNU GPL V3 License. You should have received a copy of the
GNU GPL v3 License with this file. If not please write to
sir.gnsp@gmail.com
or visit
http://www.gnu.org/licenses/gpl.txt
*****************************************************************************
*/
#ifndef ER_MARKUP_INCLUDES_HPP_
#define ER_MARKUP_INCLUDES_HPP_
#include <iostream>
#include <fstream>
#include <vector>
#include <map>
#include <utility>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include "sstream.hpp"
extern int line_no;
extern int col_no;
extern int nodeCounter;
extern void error(const char *msg);
//#define _DEBUG
#ifdef _DEBUG
#define DEBUG(...) __VA_ARGS__
#else
#define DEBUG(...)
#endif
#endif