Skip to content

Commit

Permalink
Added copyright notices to files
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@737 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
henjo committed Feb 15, 2002
1 parent 8d9e5a4 commit bbdbcc2
Show file tree
Hide file tree
Showing 25 changed files with 97 additions and 58 deletions.
56 changes: 0 additions & 56 deletions mosh/src/Makefile.single

This file was deleted.

4 changes: 4 additions & 0 deletions mosh/src/builtin_function.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "builtin_function.hpp"

#include "runtime/modelica_runtime_error.hpp"
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/builtin_function.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef BUILTIN_FUNCTION_HPP_
#define BUILTIN_FUNCTION_HPP_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/compiled_function.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "compiled_function.hpp"
#include <stdio.h>
#include <fstream>
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/compiled_function.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef COMPILED_FUNCTION_HPP_
#define COMPILED_FUNCTION_HPP_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/expression_parser.g
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

header "post_include_hpp" {

#define null 0
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/function_argument.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "function_argument.hpp"

function_argument::function_argument()
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/function_argument.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef FUNCTION_ARGUMENT_HPP_
#define FUNCTION_ARGUMENT_HPP_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/modelica_function.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "modelica_function.hpp"

#include "value.hpp"
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/modelica_function.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef MODELICA_FUNCTION_HPP_
#define MODELICA_FUNCTION_HPP_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/modelica_runtime_error.cpp
@@ -1 +1,5 @@
//
// Copyright PELAB, Linkoping University
//

#include "modelica_runtime_error.hpp"
4 changes: 4 additions & 0 deletions mosh/src/modelica_runtime_error.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef MODELICA_RUNTIME_ERROR_
#define MODELICA_RUNTIME_ERROR_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/modelica_type.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "modelica_type.hpp"

#include <vector>
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/modelica_type.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef MODELICA_TYPE_HPP_
#define MODELICA_TYPE_HPP_

Expand Down
8 changes: 6 additions & 2 deletions mosh/src/mosh.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "modelica_lexer.hpp"
#include "modelica_expression_parser.hpp"
#include "modelica_tree_parser.hpp"
Expand Down Expand Up @@ -33,8 +37,8 @@ int main(int argc, char* argv[])
if (argc == 1) // Interactiv mode
{

cout << "OpenModelica 0.1" << endl;
cout << "Copyright 2002, PELAB, Linkoping University" << endl;
std::cout << "Open Source Modelica 0.1" << endl;
std::cout << "Copyright 2002, PELAB, Linkoping University" << endl;

bool done = false;
while (!done)
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/runtime/main.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "modelica_array.hpp"
#include "numerical_array.hpp"

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/runtime/modelica_array.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "modelica_array.hpp"
#include <algorithm>
#include <numeric>
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/runtime/modelica_array.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef MODELICA_ARRAY_HPP_
#define MODELICA_ARRAY_HPP_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/runtime/modelica_runtime_error.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef MODELICA_RUNTIME_ERROR_
#define MODELICA_RUNTIME_ERROR_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/runtime/numerical_array.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef NUMERICAL_ARRAY_
#define NUMERICAL_ARRAY_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/symboltable.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "symboltable.hpp"

#include "builtin_function.hpp"
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/symboltable.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef SYMBOLTABLE_HPP_
#define SYMBOLTABLE_HPP_

Expand Down
4 changes: 4 additions & 0 deletions mosh/src/value.cpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#include "value.hpp"

#include "modelica_function.hpp"
Expand Down
4 changes: 4 additions & 0 deletions mosh/src/value.hpp
@@ -1,3 +1,7 @@
//
// Copyright PELAB, Linkoping University
//

#ifndef VALUE_HPP_
#define VALUE_HPP_

Expand Down
3 changes: 3 additions & 0 deletions mosh/src/walker.g
@@ -1,3 +1,6 @@
//
// Copyright PELAB, Linkoping University
//

header "post_include_hpp" {

Expand Down

0 comments on commit bbdbcc2

Please sign in to comment.