Browse Source

* Added copyright notice

git-svn-id: trunk@8524 -
michael 18 years ago
parent
commit
4f13348908

+ 14 - 0
packages/fcl-json/src/fpjson.pp

@@ -1,3 +1,17 @@
+{
+    This file is part of the Free Component Library
+
+    JSON Data structures
+    Copyright (c) 2007 by Michael Van Canneyt [email protected]
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program 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.
+
+ **********************************************************************}
 {$mode objfpc}
 {$mode objfpc}
 {$h+}
 {$h+}
 unit fpjson;
 unit fpjson;

+ 16 - 2
packages/fcl-json/src/jsonparser.pp

@@ -1,6 +1,20 @@
-unit jsonparser;
+{
+    This file is part of the Free Component Library
+
+    JSON source parser
+    Copyright (c) 2007 by Michael Van Canneyt [email protected]
 
 
-{$mode objfpc}{$H+}
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program 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.
+
+ **********************************************************************}
+{$mode objfpc}
+{$h+}
+unit jsonparser;
 
 
 interface
 interface
 
 

+ 16 - 2
packages/fcl-json/tests/testjson.pp

@@ -1,6 +1,20 @@
-program testjson;
+{
+    This file is part of the Free Component Library
+
+    JSON fpcunit tester program
+    Copyright (c) 2007 by Michael Van Canneyt [email protected]
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
 
 
-{$mode objfpc}{$H+}
+    This program 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.
+
+ **********************************************************************}
+{$mode objfpc}
+{$h+}
+program testjson;
 
 
 uses
 uses
   Classes, consoletestrunner, testjsondata, testjsonparser;
   Classes, consoletestrunner, testjsondata, testjsonparser;

+ 16 - 2
packages/fcl-json/tests/testjsondata.pp

@@ -1,6 +1,20 @@
-unit testjsondata; 
+{
+    This file is part of the Free Component Library
+
+    JSON FPCUNit test for data structures
+    Copyright (c) 2007 by Michael Van Canneyt [email protected]
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
 
 
-{$mode objfpc}{$H+}
+    This program 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.
+
+ **********************************************************************}
+{$mode objfpc}
+{$h+}
+unit testjsondata; 
 
 
 interface
 interface
 
 

+ 16 - 2
packages/fcl-json/tests/testjsonparser.pp

@@ -1,6 +1,20 @@
-unit testjsonparser;
+{
+    This file is part of the Free Component Library
+
+    JSON FPCUNit test for parser
+    Copyright (c) 2007 by Michael Van Canneyt [email protected]
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
 
 
-{$mode objfpc}{$H+}
+    This program 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.
+
+ **********************************************************************}
+{$mode objfpc}
+{$h+}
+unit testjsonparser;
 
 
 interface
 interface