diff --git a/Variable.cpp b/Variable.cpp index f954d00..b24f432 100644 --- a/Variable.cpp +++ b/Variable.cpp @@ -1,3 +1,22 @@ +/** + * 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 . + */ + #include "Variable.h" Variable::Variable(int name_impl, Type* type_impl) : name(name_impl), type(type_impl), byRef(false) { }