diff --git a/inc/AST/ASTElement.h b/inc/AST/ASTElement.h index 6e945e4..a71b3e1 100644 --- a/inc/AST/ASTElement.h +++ b/inc/AST/ASTElement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef ASTELEMENT_H #define ASTELEMENT_H diff --git a/inc/AST/ASTVisitor.h b/inc/AST/ASTVisitor.h index 4747142..f804467 100644 --- a/inc/AST/ASTVisitor.h +++ b/inc/AST/ASTVisitor.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef ASTVISITOR_H #define ASTVISITOR_H diff --git a/inc/AST/AssignmentExpression.h b/inc/AST/AssignmentExpression.h index a0d3d9f..0420e61 100644 --- a/inc/AST/AssignmentExpression.h +++ b/inc/AST/AssignmentExpression.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef ASSIGNMENTEXPRESSION_H #define ASSIGNMENTEXPRESSION_H diff --git a/inc/AST/BinOp.h b/inc/AST/BinOp.h index 80b9974..58a14c3 100644 --- a/inc/AST/BinOp.h +++ b/inc/AST/BinOp.h @@ -1,3 +1,10 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + + #ifndef BINOP_H #define BINOP_H diff --git a/inc/AST/BinOpExpression.h b/inc/AST/BinOpExpression.h index c480e93..e6cbc10 100644 --- a/inc/AST/BinOpExpression.h +++ b/inc/AST/BinOpExpression.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef BINOPEXPRESSION_H #define BINOPEXPRESSION_H diff --git a/inc/AST/CodeGenVisitor.h b/inc/AST/CodeGenVisitor.h index 001ad77..fc989b6 100644 --- a/inc/AST/CodeGenVisitor.h +++ b/inc/AST/CodeGenVisitor.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef CODEGENVISITOR_H #define CODEGENVISITOR_H diff --git a/inc/AST/ConstantExpression.h b/inc/AST/ConstantExpression.h index 46daa9f..b842457 100644 --- a/inc/AST/ConstantExpression.h +++ b/inc/AST/ConstantExpression.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef CONSTANTEXPRESSION_H #define CONSTANTEXPRESSION_H diff --git a/inc/AST/Expression.h b/inc/AST/Expression.h index 0f2fa98..ef24aaa 100644 --- a/inc/AST/Expression.h +++ b/inc/AST/Expression.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef EXPRESSION_H #define EXPRESSION_H diff --git a/inc/AST/ExpressionStatement.h b/inc/AST/ExpressionStatement.h index b80c501..4bcba10 100644 --- a/inc/AST/ExpressionStatement.h +++ b/inc/AST/ExpressionStatement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef EXPRESSIONSTATEMENT_H #define EXPRESSIONSTATEMENT_H diff --git a/inc/AST/ForStatement.h b/inc/AST/ForStatement.h index fb7fd94..faadf1c 100644 --- a/inc/AST/ForStatement.h +++ b/inc/AST/ForStatement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef FORSTATEMENT_H #define FORSTATEMENT_H diff --git a/inc/AST/FunctionCallExpression.h b/inc/AST/FunctionCallExpression.h index e02009b..bd6aecd 100644 --- a/inc/AST/FunctionCallExpression.h +++ b/inc/AST/FunctionCallExpression.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef FUNCTIONCALLEXPRESSION_H #define FUNCTIONCALLEXPRESSION_H diff --git a/inc/AST/FunctionDefinition.h b/inc/AST/FunctionDefinition.h index 446d285..39175a9 100644 --- a/inc/AST/FunctionDefinition.h +++ b/inc/AST/FunctionDefinition.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef FUNCTIONDEFINITION_H #define FUNCTIONDEFINITION_H diff --git a/inc/AST/IfStatement.h b/inc/AST/IfStatement.h index d8f74b3..eccc039 100644 --- a/inc/AST/IfStatement.h +++ b/inc/AST/IfStatement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef IFSTATEMENT_H #define IFSTATEMENT_H diff --git a/inc/AST/LoadExpression.h b/inc/AST/LoadExpression.h index cb85a80..e9fa0db 100644 --- a/inc/AST/LoadExpression.h +++ b/inc/AST/LoadExpression.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef LOADEXPRESSION_H #define LOADEXPRESSION_H diff --git a/inc/AST/ParameterList.h b/inc/AST/ParameterList.h index 3cbbc63..f36577b 100644 --- a/inc/AST/ParameterList.h +++ b/inc/AST/ParameterList.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef PARAMETERLIST_H #define PARAMETERLIST_H diff --git a/inc/AST/PrintVisitor.h b/inc/AST/PrintVisitor.h index e8bba3b..dc8c5e9 100644 --- a/inc/AST/PrintVisitor.h +++ b/inc/AST/PrintVisitor.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef PRINTVISITOR_H #define PRINTVISITOR_H diff --git a/inc/AST/RandomForStatement.h b/inc/AST/RandomForStatement.h index 7db2fcd..835b702 100644 --- a/inc/AST/RandomForStatement.h +++ b/inc/AST/RandomForStatement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef RANDOMFORSTATEMENT_H #define RANDOMFORSTATEMENT_H diff --git a/inc/AST/RandomIfStatement.h b/inc/AST/RandomIfStatement.h index 32671a8..7445d13 100644 --- a/inc/AST/RandomIfStatement.h +++ b/inc/AST/RandomIfStatement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef RANDOMIFSTATEMENT_H #define RANDOMIFSTATEMENT_H diff --git a/inc/AST/ReturnStatement.h b/inc/AST/ReturnStatement.h index 284f6cd..13dd5e1 100644 --- a/inc/AST/ReturnStatement.h +++ b/inc/AST/ReturnStatement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef RETURNSTATEMENT_H #define RETURNSTATEMENT_H diff --git a/inc/AST/Scope.h b/inc/AST/Scope.h index fa67ed2..b9dbb55 100644 --- a/inc/AST/Scope.h +++ b/inc/AST/Scope.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef SCOPE_H #define SCOPE_H diff --git a/inc/AST/Statement.h b/inc/AST/Statement.h index 9fa49fd..5010169 100644 --- a/inc/AST/Statement.h +++ b/inc/AST/Statement.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef STATEMENT_H #define STATEMENT_H diff --git a/inc/AST/StatementList.h b/inc/AST/StatementList.h index 225f3aa..9245abc 100644 --- a/inc/AST/StatementList.h +++ b/inc/AST/StatementList.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef STATEMENTLIST_H #define STATEMENTLIST_H diff --git a/inc/AST/Type.h b/inc/AST/Type.h index a570f41..1150e15 100644 --- a/inc/AST/Type.h +++ b/inc/AST/Type.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef TYPE_H #define TYPE_H diff --git a/inc/AST/ValueList.h b/inc/AST/ValueList.h index e9a9b87..8891d32 100644 --- a/inc/AST/ValueList.h +++ b/inc/AST/ValueList.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef VALUELIST_H #define VALUELIST_H diff --git a/inc/AST/VariableDefinition.h b/inc/AST/VariableDefinition.h index f588364..7802762 100644 --- a/inc/AST/VariableDefinition.h +++ b/inc/AST/VariableDefinition.h @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #ifndef VARIABLEDEFINITION_H #define VARIABLEDEFINITION_H diff --git a/src/AST/ASTElement.cpp b/src/AST/ASTElement.cpp index a2987fd..d05fecb 100644 --- a/src/AST/ASTElement.cpp +++ b/src/AST/ASTElement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ASTElement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/ASTVisitor.cpp b/src/AST/ASTVisitor.cpp index fe31aa0..ff4d95b 100644 --- a/src/AST/ASTVisitor.cpp +++ b/src/AST/ASTVisitor.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ASTVisitor.h" ASTVisitor::ASTVisitor() { diff --git a/src/AST/AssignmentExpression.cpp b/src/AST/AssignmentExpression.cpp index 44bd3e7..f65af1a 100644 --- a/src/AST/AssignmentExpression.cpp +++ b/src/AST/AssignmentExpression.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/AssignmentExpression.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/BinOp.cpp b/src/AST/BinOp.cpp index 522ac5b..d7ad56e 100644 --- a/src/AST/BinOp.cpp +++ b/src/AST/BinOp.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/BinOp.h" std::string binOpToString(BinOp op) { diff --git a/src/AST/BinOpExpression.cpp b/src/AST/BinOpExpression.cpp index 40e05e3..f87aecc 100644 --- a/src/AST/BinOpExpression.cpp +++ b/src/AST/BinOpExpression.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/BinOpExpression.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/CodeGenVisitor.cpp b/src/AST/CodeGenVisitor.cpp index 1727662..97c7ad5 100644 --- a/src/AST/CodeGenVisitor.cpp +++ b/src/AST/CodeGenVisitor.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/CodeGenVisitor.h" #include "llvm/Analysis/Verifier.h" #include diff --git a/src/AST/ConstantExpression.cpp b/src/AST/ConstantExpression.cpp index 5d96fda..bcba10b 100644 --- a/src/AST/ConstantExpression.cpp +++ b/src/AST/ConstantExpression.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ConstantExpression.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/Expression.cpp b/src/AST/Expression.cpp index 6eedb16..ec7d07e 100644 --- a/src/AST/Expression.cpp +++ b/src/AST/Expression.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/Expression.h" Expression::Expression() { diff --git a/src/AST/ExpressionStatement.cpp b/src/AST/ExpressionStatement.cpp index 5399885..94274e0 100644 --- a/src/AST/ExpressionStatement.cpp +++ b/src/AST/ExpressionStatement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ExpressionStatement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/ForStatement.cpp b/src/AST/ForStatement.cpp index 0eb4e4b..ca268f1 100644 --- a/src/AST/ForStatement.cpp +++ b/src/AST/ForStatement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ForStatement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/FunctionCallExpression.cpp b/src/AST/FunctionCallExpression.cpp index 58d071f..af78b26 100644 --- a/src/AST/FunctionCallExpression.cpp +++ b/src/AST/FunctionCallExpression.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/FunctionCallExpression.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/FunctionDefinition.cpp b/src/AST/FunctionDefinition.cpp index ff95dca..a6c440f 100644 --- a/src/AST/FunctionDefinition.cpp +++ b/src/AST/FunctionDefinition.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/FunctionDefinition.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/IfStatement.cpp b/src/AST/IfStatement.cpp index 52097a0..85f5aaf 100644 --- a/src/AST/IfStatement.cpp +++ b/src/AST/IfStatement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/IfStatement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/LoadExpression.cpp b/src/AST/LoadExpression.cpp index c05f17b..ca46fcd 100644 --- a/src/AST/LoadExpression.cpp +++ b/src/AST/LoadExpression.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/LoadExpression.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/ParameterList.cpp b/src/AST/ParameterList.cpp index 5cac66d..c3dfe91 100644 --- a/src/AST/ParameterList.cpp +++ b/src/AST/ParameterList.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ParameterList.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/PrintVisitor.cpp b/src/AST/PrintVisitor.cpp index 17e23dd..75af476 100644 --- a/src/AST/PrintVisitor.cpp +++ b/src/AST/PrintVisitor.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/PrintVisitor.h" #include #include diff --git a/src/AST/RandomForStatement.cpp b/src/AST/RandomForStatement.cpp index e1c48d6..06a4291 100644 --- a/src/AST/RandomForStatement.cpp +++ b/src/AST/RandomForStatement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/RandomForStatement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/RandomIfStatement.cpp b/src/AST/RandomIfStatement.cpp index 0fc0317..1c6366e 100644 --- a/src/AST/RandomIfStatement.cpp +++ b/src/AST/RandomIfStatement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/RandomIfStatement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/ReturnStatement.cpp b/src/AST/ReturnStatement.cpp index 2a72035..c5a39b1 100644 --- a/src/AST/ReturnStatement.cpp +++ b/src/AST/ReturnStatement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ReturnStatement.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/Scope.cpp b/src/AST/Scope.cpp index 2ad9a28..16e8ece 100644 --- a/src/AST/Scope.cpp +++ b/src/AST/Scope.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/Scope.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/Statement.cpp b/src/AST/Statement.cpp index 5d56da5..8e3f734 100644 --- a/src/AST/Statement.cpp +++ b/src/AST/Statement.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/Statement.h" Statement::Statement() { diff --git a/src/AST/StatementList.cpp b/src/AST/StatementList.cpp index 466880b..3bb31d7 100644 --- a/src/AST/StatementList.cpp +++ b/src/AST/StatementList.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/StatementList.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/Type.cpp b/src/AST/Type.cpp index a875912..807365f 100644 --- a/src/AST/Type.cpp +++ b/src/AST/Type.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/Type.h" #include "llvm/DerivedTypes.h" #include "llvm/LLVMContext.h" diff --git a/src/AST/ValueList.cpp b/src/AST/ValueList.cpp index 86cbe68..4053f83 100644 --- a/src/AST/ValueList.cpp +++ b/src/AST/ValueList.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/ValueList.h" #include "AST/ASTVisitor.h" diff --git a/src/AST/VariableDefinition.cpp b/src/AST/VariableDefinition.cpp index 36cfaa9..96e5c8d 100644 --- a/src/AST/VariableDefinition.cpp +++ b/src/AST/VariableDefinition.cpp @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include "AST/VariableDefinition.h" #include "AST/ASTVisitor.h" diff --git a/src/libscully.c b/src/libscully.c index b1d5e9d..2618a5a 100644 --- a/src/libscully.c +++ b/src/libscully.c @@ -1,3 +1,9 @@ +/* The scully programming language. + * + * Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013. + * Licensed under the GNU GPL v2. + */ + #include #include #include