-
Notifications
You must be signed in to change notification settings - Fork 0
/
Variable.cpp
24 lines (21 loc) · 1001 Bytes
/
Variable.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* Copyright 2010 by Benjamin J. Land (a.k.a. BenLand100)
*
* This file is part of CPascal.
*
* CPascal is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CPascal is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CPascal. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Variable.h"
Variable::Variable(int name_impl, Type* type_impl) : name(name_impl), type(type_impl), byRef(false) { }
Variable::Variable(int name_impl, Type* type_impl, bool byRef_impl) : name(name_impl), type(type_impl), byRef(byRef_impl) { }