From 386c45fd4d2fdf3964d0e0515acadd761c6be0eb Mon Sep 17 00:00:00 2001 From: Bruno da Silva de Oliveira Date: Tue, 17 Aug 2004 01:51:29 +0000 Subject: [PATCH] - added copyright notice [SVN r24521] --- pyste/tests/GCCXMLParserUT.py | 5 +++++ pyste/tests/SmartFileUT.py | 4 ++++ pyste/tests/abstract_test.h | 5 +++++ pyste/tests/abstract_testUT.py | 4 ++++ pyste/tests/add_test.h | 5 +++++ pyste/tests/add_testUT.py | 4 ++++ pyste/tests/basic.cpp | 5 +++++ pyste/tests/basic.h | 5 +++++ pyste/tests/basicUT.py | 4 ++++ pyste/tests/code_test.h | 6 +++++- pyste/tests/code_testUT.py | 4 ++++ pyste/tests/enums.h | 5 +++++ pyste/tests/enumsUT.py | 4 ++++ pyste/tests/header_test.h | 5 +++++ pyste/tests/header_testUT.py | 4 ++++ pyste/tests/infosUT.py | 4 ++++ pyste/tests/inherit.cpp | 5 +++++ pyste/tests/inherit.h | 6 +++++- pyste/tests/inherit2.h | 5 +++++ pyste/tests/inherit2UT.py | 4 ++++ pyste/tests/inherit3.h | 5 +++++ pyste/tests/inherit3UT.py | 4 ++++ pyste/tests/inherit4.h | 5 +++++ pyste/tests/inherit4UT.py | 4 ++++ pyste/tests/inheritUT.py | 4 ++++ pyste/tests/nested.cpp | 5 +++++ pyste/tests/nestedUT.py | 4 ++++ pyste/tests/opaque.h | 5 +++++ pyste/tests/opaqueUT.py | 4 ++++ pyste/tests/operators.cpp | 5 +++++ pyste/tests/operators.h | 5 +++++ pyste/tests/operatorsUT.py | 4 ++++ pyste/tests/policiesUT.py | 4 ++++ pyste/tests/runtests.py | 4 ++++ pyste/tests/smart_ptr.h | 6 ++++++ pyste/tests/smart_ptrUT.py | 4 ++++ pyste/tests/templates.h | 5 +++++ pyste/tests/templatesUT.py | 4 ++++ pyste/tests/test_all.py | 6 +++++- pyste/tests/vars.cpp | 5 +++++ pyste/tests/vars.h | 5 +++++ pyste/tests/varsUT.py | 4 ++++ pyste/tests/virtual.cpp | 5 +++++ pyste/tests/virtual.h | 5 +++++ pyste/tests/virtual2.h | 5 +++++ pyste/tests/virtual2UT.py | 5 +++++ pyste/tests/virtualUT.py | 4 ++++ pyste/tests/wrappertest.h | 5 +++++ pyste/tests/wrappertestUT.py | 4 ++++ pyste/tests/wrappertest_wrappers.h | 5 +++++ 50 files changed, 229 insertions(+), 3 deletions(-) diff --git a/pyste/tests/GCCXMLParserUT.py b/pyste/tests/GCCXMLParserUT.py index 3bacc973..f4140af5 100644 --- a/pyste/tests/GCCXMLParserUT.py +++ b/pyste/tests/GCCXMLParserUT.py @@ -1,3 +1,8 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) + import sys sys.path.append('../src') import unittest diff --git a/pyste/tests/SmartFileUT.py b/pyste/tests/SmartFileUT.py index ffde1899..3be52bf4 100644 --- a/pyste/tests/SmartFileUT.py +++ b/pyste/tests/SmartFileUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import sys sys.path.append('../src') from SmartFile import * diff --git a/pyste/tests/abstract_test.h b/pyste/tests/abstract_test.h index 4ac2b99b..a0a1066b 100644 --- a/pyste/tests/abstract_test.h +++ b/pyste/tests/abstract_test.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #include #include diff --git a/pyste/tests/abstract_testUT.py b/pyste/tests/abstract_testUT.py index ace4ba80..fdc221a5 100644 --- a/pyste/tests/abstract_testUT.py +++ b/pyste/tests/abstract_testUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _abstract_test import * diff --git a/pyste/tests/add_test.h b/pyste/tests/add_test.h index d9f84780..eaee6093 100644 --- a/pyste/tests/add_test.h +++ b/pyste/tests/add_test.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace add_test { struct C diff --git a/pyste/tests/add_testUT.py b/pyste/tests/add_testUT.py index 69748418..d6e819b5 100644 --- a/pyste/tests/add_testUT.py +++ b/pyste/tests/add_testUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _add_test import * diff --git a/pyste/tests/basic.cpp b/pyste/tests/basic.cpp index 9e6ed996..40da0fac 100644 --- a/pyste/tests/basic.cpp +++ b/pyste/tests/basic.cpp @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #include "basic.h" namespace basic { diff --git a/pyste/tests/basic.h b/pyste/tests/basic.h index 08286593..0887c4b0 100644 --- a/pyste/tests/basic.h +++ b/pyste/tests/basic.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef BASIC_H #define BASIC_H diff --git a/pyste/tests/basicUT.py b/pyste/tests/basicUT.py index 4600e9e4..3e21c8ea 100644 --- a/pyste/tests/basicUT.py +++ b/pyste/tests/basicUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _basic import * diff --git a/pyste/tests/code_test.h b/pyste/tests/code_test.h index 4e073c78..cbfa6a38 100644 --- a/pyste/tests/code_test.h +++ b/pyste/tests/code_test.h @@ -1,4 +1,8 @@ - +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ struct A { int x; }; diff --git a/pyste/tests/code_testUT.py b/pyste/tests/code_testUT.py index 4655e724..ec84879f 100644 --- a/pyste/tests/code_testUT.py +++ b/pyste/tests/code_testUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _code_test import * diff --git a/pyste/tests/enums.h b/pyste/tests/enums.h index e58a5c39..f274a2d8 100644 --- a/pyste/tests/enums.h +++ b/pyste/tests/enums.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef ENUMS_H #define ENUMS_H diff --git a/pyste/tests/enumsUT.py b/pyste/tests/enumsUT.py index cd1a8d9e..df21e852 100644 --- a/pyste/tests/enumsUT.py +++ b/pyste/tests/enumsUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _enums import * diff --git a/pyste/tests/header_test.h b/pyste/tests/header_test.h index ada44ac0..0b8505f2 100644 --- a/pyste/tests/header_test.h +++ b/pyste/tests/header_test.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef HEADER_TEST_H #define HEADER_TEST_H diff --git a/pyste/tests/header_testUT.py b/pyste/tests/header_testUT.py index 4e879429..8dfa5fb9 100644 --- a/pyste/tests/header_testUT.py +++ b/pyste/tests/header_testUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _header_test import * diff --git a/pyste/tests/infosUT.py b/pyste/tests/infosUT.py index 71d5e368..045841f4 100644 --- a/pyste/tests/infosUT.py +++ b/pyste/tests/infosUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import sys sys.path.append('../src') from infos import * diff --git a/pyste/tests/inherit.cpp b/pyste/tests/inherit.cpp index d5c34e96..e308c568 100644 --- a/pyste/tests/inherit.cpp +++ b/pyste/tests/inherit.cpp @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #include "inherit.h" int inherit::C::s = 1; diff --git a/pyste/tests/inherit.h b/pyste/tests/inherit.h index 0703ddc5..ba1ccc1a 100644 --- a/pyste/tests/inherit.h +++ b/pyste/tests/inherit.h @@ -1,4 +1,8 @@ - +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace inherit { template diff --git a/pyste/tests/inherit2.h b/pyste/tests/inherit2.h index f1a7195a..f0f51165 100644 --- a/pyste/tests/inherit2.h +++ b/pyste/tests/inherit2.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace inherit2 { struct A diff --git a/pyste/tests/inherit2UT.py b/pyste/tests/inherit2UT.py index 22985b1c..2079e86a 100644 --- a/pyste/tests/inherit2UT.py +++ b/pyste/tests/inherit2UT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _inherit2 import * diff --git a/pyste/tests/inherit3.h b/pyste/tests/inherit3.h index 8385fe50..eb399a6c 100644 --- a/pyste/tests/inherit3.h +++ b/pyste/tests/inherit3.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace inherit3 { diff --git a/pyste/tests/inherit3UT.py b/pyste/tests/inherit3UT.py index 78cd7c3f..4a80a5e4 100644 --- a/pyste/tests/inherit3UT.py +++ b/pyste/tests/inherit3UT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _inherit3 import * diff --git a/pyste/tests/inherit4.h b/pyste/tests/inherit4.h index fddda295..0219aa0f 100644 --- a/pyste/tests/inherit4.h +++ b/pyste/tests/inherit4.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace inherit4 { struct A diff --git a/pyste/tests/inherit4UT.py b/pyste/tests/inherit4UT.py index ce917afb..416c9ff2 100644 --- a/pyste/tests/inherit4UT.py +++ b/pyste/tests/inherit4UT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _inherit4 import * diff --git a/pyste/tests/inheritUT.py b/pyste/tests/inheritUT.py index 0df82799..eb6198f9 100644 --- a/pyste/tests/inheritUT.py +++ b/pyste/tests/inheritUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _inherit import * diff --git a/pyste/tests/nested.cpp b/pyste/tests/nested.cpp index 9a37a226..5d1761c3 100644 --- a/pyste/tests/nested.cpp +++ b/pyste/tests/nested.cpp @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #include "nested.h" int nested::X::staticXValue = 10; diff --git a/pyste/tests/nestedUT.py b/pyste/tests/nestedUT.py index 43f3a346..0d55f163 100644 --- a/pyste/tests/nestedUT.py +++ b/pyste/tests/nestedUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _nested import * diff --git a/pyste/tests/opaque.h b/pyste/tests/opaque.h index 84ea3423..4e8c117d 100644 --- a/pyste/tests/opaque.h +++ b/pyste/tests/opaque.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef OPAQUE_H #define OPAQUE_H diff --git a/pyste/tests/opaqueUT.py b/pyste/tests/opaqueUT.py index 2be26b83..44187091 100644 --- a/pyste/tests/opaqueUT.py +++ b/pyste/tests/opaqueUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _opaque import * diff --git a/pyste/tests/operators.cpp b/pyste/tests/operators.cpp index cc8e881d..b22a283b 100644 --- a/pyste/tests/operators.cpp +++ b/pyste/tests/operators.cpp @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #include "operators.h" double operators::C::x = 10; diff --git a/pyste/tests/operators.h b/pyste/tests/operators.h index 30ec8ecf..83b8ef56 100644 --- a/pyste/tests/operators.h +++ b/pyste/tests/operators.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef OPERATORS_H #define OPERATORS_H diff --git a/pyste/tests/operatorsUT.py b/pyste/tests/operatorsUT.py index b0bdfa13..fe547146 100644 --- a/pyste/tests/operatorsUT.py +++ b/pyste/tests/operatorsUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _operators import * diff --git a/pyste/tests/policiesUT.py b/pyste/tests/policiesUT.py index 5e699b21..8d3f618e 100644 --- a/pyste/tests/policiesUT.py +++ b/pyste/tests/policiesUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import sys sys.path.append('../src') import unittest diff --git a/pyste/tests/runtests.py b/pyste/tests/runtests.py index aae2dcfa..bf7c8065 100644 --- a/pyste/tests/runtests.py +++ b/pyste/tests/runtests.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) #!/usr/bin/python import sys diff --git a/pyste/tests/smart_ptr.h b/pyste/tests/smart_ptr.h index 05b9149c..57dfb0ce 100644 --- a/pyste/tests/smart_ptr.h +++ b/pyste/tests/smart_ptr.h @@ -1,3 +1,9 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ + #ifndef SMART_PTR_H #define SMART_PTR_H diff --git a/pyste/tests/smart_ptrUT.py b/pyste/tests/smart_ptrUT.py index 477c919a..6a9d2253 100644 --- a/pyste/tests/smart_ptrUT.py +++ b/pyste/tests/smart_ptrUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _smart_ptr import * diff --git a/pyste/tests/templates.h b/pyste/tests/templates.h index c34f4a81..7afe8ff4 100644 --- a/pyste/tests/templates.h +++ b/pyste/tests/templates.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace templates { template diff --git a/pyste/tests/templatesUT.py b/pyste/tests/templatesUT.py index af908369..6f17548e 100644 --- a/pyste/tests/templatesUT.py +++ b/pyste/tests/templatesUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _templates import * diff --git a/pyste/tests/test_all.py b/pyste/tests/test_all.py index 413d7246..dbe0b1a1 100644 --- a/pyste/tests/test_all.py +++ b/pyste/tests/test_all.py @@ -1,4 +1,8 @@ #!/usr/bin/python +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import os import glob @@ -13,7 +17,7 @@ if sys.platform == 'win32': includes = '-ID:/programming/libraries/boost-cvs/boost -ID:/Bin/Python/include' build_pyste_cmd = 'python ../src/Pyste/pyste.py --cache-dir=cache %s ' % includes - compile_single_cmd = 'icl /nologo /GR /GX -c %s -I. ' % includes + compile_single_cmd = 'cl /nologo /GR /GX -c %s -I. ' % includes link_single_cmd = 'link /nologo /DLL '\ '/libpath:D:/programming/libraries/boost-cvs/lib /libpath:D:/Bin/Python/libs '\ 'boost_python.lib python23.lib /out:_%s.dll ' diff --git a/pyste/tests/vars.cpp b/pyste/tests/vars.cpp index 03994cff..4a1d2886 100644 --- a/pyste/tests/vars.cpp +++ b/pyste/tests/vars.cpp @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #include "vars.h" const Color black = Color(0, 0, 0); diff --git a/pyste/tests/vars.h b/pyste/tests/vars.h index 0aa44cac..b98767f5 100644 --- a/pyste/tests/vars.h +++ b/pyste/tests/vars.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ struct Color { diff --git a/pyste/tests/varsUT.py b/pyste/tests/varsUT.py index 9507bba1..bff3ef59 100644 --- a/pyste/tests/varsUT.py +++ b/pyste/tests/varsUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest import _vars diff --git a/pyste/tests/virtual.cpp b/pyste/tests/virtual.cpp index a1baa6db..d00158a2 100644 --- a/pyste/tests/virtual.cpp +++ b/pyste/tests/virtual.cpp @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ // Includes ==================================================================== #include diff --git a/pyste/tests/virtual.h b/pyste/tests/virtual.h index c7880a1b..86ba53e2 100644 --- a/pyste/tests/virtual.h +++ b/pyste/tests/virtual.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace virtual_ { struct C diff --git a/pyste/tests/virtual2.h b/pyste/tests/virtual2.h index 7c9659d3..b0fc3b7b 100644 --- a/pyste/tests/virtual2.h +++ b/pyste/tests/virtual2.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ namespace virtual2 { diff --git a/pyste/tests/virtual2UT.py b/pyste/tests/virtual2UT.py index 2a722711..957eafbd 100644 --- a/pyste/tests/virtual2UT.py +++ b/pyste/tests/virtual2UT.py @@ -1,3 +1,8 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) + import unittest from _virtual2 import * diff --git a/pyste/tests/virtualUT.py b/pyste/tests/virtualUT.py index 767965f9..87899f27 100644 --- a/pyste/tests/virtualUT.py +++ b/pyste/tests/virtualUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _virtual import * diff --git a/pyste/tests/wrappertest.h b/pyste/tests/wrappertest.h index 4cce28ee..eff74c8a 100644 --- a/pyste/tests/wrappertest.h +++ b/pyste/tests/wrappertest.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef WRAPPER_TEST #define WRAPPER_TEST diff --git a/pyste/tests/wrappertestUT.py b/pyste/tests/wrappertestUT.py index 5831dd76..0d927578 100644 --- a/pyste/tests/wrappertestUT.py +++ b/pyste/tests/wrappertestUT.py @@ -1,3 +1,7 @@ +# Copyright Bruno da Silva de Oliveira 2003. Use, modification and +# distribution is subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http:#www.boost.org/LICENSE_1_0.txt) import unittest from _wrappertest import * diff --git a/pyste/tests/wrappertest_wrappers.h b/pyste/tests/wrappertest_wrappers.h index a0b5d946..d1528510 100644 --- a/pyste/tests/wrappertest_wrappers.h +++ b/pyste/tests/wrappertest_wrappers.h @@ -1,3 +1,8 @@ +/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and + distribution is subject to the Boost Software License, Version 1.0. + (See accompanying file LICENSE_1_0.txt or copy at + http:#www.boost.org/LICENSE_1_0.txt) + */ #ifndef WRAPPER_TEST_WRAPPERS #define WRAPPER_TEST_WRAPPERS