lazdaemon: added license

git-svn-id: trunk@10556 -
This commit is contained in:
mattias 2007-02-01 10:21:25 +00:00
parent e0705d3b83
commit e712308673
2 changed files with 24 additions and 8 deletions

View File

@ -17,8 +17,10 @@
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>
<Description Value="Lazarus Service (Daemon) Support"/>
<License Value="Modified LGPL as in FCL or RTL"/>
<Description Value="Lazarus Service (Daemon) Support
"/>
<License Value="Modified LGPL as in FCL or RTL
"/>
<Version Minor="9" Release="9"/>
<Files Count="2">
<Item1>

View File

@ -1,16 +1,26 @@
unit reglazdaemon;
{
*****************************************************************************
* *
* See the file COPYING.modifiedLGPL, 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. *
* *
*****************************************************************************
}
unit RegLazDaemon;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FormEditingIntf, projectintf,newitemintf, lazideintf,
controls, forms;
Classes, SysUtils, FormEditingIntf, ProjectIntf, NewItemIntf, LazIDEIntf,
Controls, Forms;
Type
{ TDaemonFileDescriptor }
type
{ TDaemonMapperDescriptor }
@ -23,6 +33,9 @@ Type
function GetImplementationSource(const Filename, SourceName, ResourceName: string): string; override;
end;
{ TDaemonFileDescriptor }
TDaemonFileDescriptor = Class(TFileDescPascalUnitWithResource)
Public
Constructor Create; override;
@ -32,6 +45,7 @@ Type
function GetImplementationSource(const Filename, SourceName, ResourceName: string): string; override;
end;
{ TDaemonProjectDescriptor }
TDaemonProjectDescriptor = class(TProjectDescriptor)