* Added copyright notice

git-svn-id: trunk@8524 -
This commit is contained in:
michael 2007-09-17 19:22:53 +00:00
parent dd54d6a697
commit 4f13348908
5 changed files with 78 additions and 8 deletions

View File

@ -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;

View File

@ -1,6 +1,20 @@
unit jsonparser;
{
This file is part of the Free Component Library
{$mode objfpc}{$H+}
JSON source 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.
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

View File

@ -1,6 +1,20 @@
program testjson;
{
This file is part of the Free Component Library
{$mode objfpc}{$H+}
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.
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;

View File

@ -1,6 +1,20 @@
unit testjsondata;
{
This file is part of the Free Component Library
{$mode objfpc}{$H+}
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.
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

View File

@ -1,6 +1,20 @@
unit testjsonparser;
{
This file is part of the Free Component Library
{$mode objfpc}{$H+}
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.
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