summaryrefslogtreecommitdiff
path: root/packages/fcl-json
diff options
context:
space:
mode:
authormichael <michael@3ad0048d-3df7-0310-abae-a5850022a9f2>2007-09-17 19:22:53 +0000
committermichael <michael@3ad0048d-3df7-0310-abae-a5850022a9f2>2007-09-17 19:22:53 +0000
commit6e1407bf6c7a30c29b7c95a49281348ba8e8b06c (patch)
tree203fe5345dcc5ac1bc6cda5aa2852711f1cc8ecb /packages/fcl-json
parenta6c0033e3b1dac8c307ab18e5d1b0c226c9df05e (diff)
downloadfpc-6e1407bf6c7a30c29b7c95a49281348ba8e8b06c.tar.gz
* Added copyright notice
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@8524 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/fcl-json')
-rw-r--r--packages/fcl-json/src/fpjson.pp14
-rw-r--r--packages/fcl-json/src/jsonparser.pp18
-rw-r--r--packages/fcl-json/tests/testjson.pp18
-rw-r--r--packages/fcl-json/tests/testjsondata.pp18
-rw-r--r--packages/fcl-json/tests/testjsonparser.pp18
5 files changed, 78 insertions, 8 deletions
diff --git a/packages/fcl-json/src/fpjson.pp b/packages/fcl-json/src/fpjson.pp
index 45ff2c78a3..def597b57d 100644
--- a/packages/fcl-json/src/fpjson.pp
+++ b/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 michael@freepascal.org
+
+ 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 fpjson;
diff --git a/packages/fcl-json/src/jsonparser.pp b/packages/fcl-json/src/jsonparser.pp
index 33bdac5dc1..58564e72bb 100644
--- a/packages/fcl-json/src/jsonparser.pp
+++ b/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 michael@freepascal.org
-{$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
diff --git a/packages/fcl-json/tests/testjson.pp b/packages/fcl-json/tests/testjson.pp
index aa49a5c770..038d29df43 100644
--- a/packages/fcl-json/tests/testjson.pp
+++ b/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 michael@freepascal.org
+
+ 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
Classes, consoletestrunner, testjsondata, testjsonparser;
diff --git a/packages/fcl-json/tests/testjsondata.pp b/packages/fcl-json/tests/testjsondata.pp
index be87d1cdef..ada2de8f99 100644
--- a/packages/fcl-json/tests/testjsondata.pp
+++ b/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 michael@freepascal.org
+
+ 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
diff --git a/packages/fcl-json/tests/testjsonparser.pp b/packages/fcl-json/tests/testjsonparser.pp
index 070bc2e73f..60d4b7228d 100644
--- a/packages/fcl-json/tests/testjsonparser.pp
+++ b/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 michael@freepascal.org
+
+ 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