mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-07 07:47:12 +01:00
* Added copyright notice
git-svn-id: trunk@8524 -
This commit is contained in:
parent
dd54d6a697
commit
4f13348908
@ -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}
|
{$mode objfpc}
|
||||||
{$h+}
|
{$h+}
|
||||||
unit fpjson;
|
unit fpjson;
|
||||||
|
|||||||
@ -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
|
interface
|
||||||
|
|
||||||
|
|||||||
@ -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
|
uses
|
||||||
Classes, consoletestrunner, testjsondata, testjsonparser;
|
Classes, consoletestrunner, testjsondata, testjsonparser;
|
||||||
|
|||||||
@ -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
|
interface
|
||||||
|
|
||||||
|
|||||||
@ -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
|
interface
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user