IDE: removed unused files

git-svn-id: trunk@10640 -
This commit is contained in:
mattias 2007-02-13 23:47:09 +00:00
parent fee343a469
commit 455445c012
3 changed files with 0 additions and 123 deletions

2
.gitattributes vendored
View File

@ -753,9 +753,7 @@ debugger/windebug/windloader.pp svneol=native#text/pascal
debugger/windebug/windpetypes.pp svneol=native#text/pascal
debugger/windebug/windsymbols.pas svneol=native#text/pascal
debugger/windebug/windutil.pp svneol=native#text/pascal
designer/abstractcompiler.pp svneol=native#text/pascal
designer/abstracteditor.pp svneol=native#text/pascal
designer/abstractfilesystem.pp svneol=native#text/pascal
designer/aligncompsdlg.lfm svneol=native#text/plain
designer/aligncompsdlg.lrs svneol=native#text/plain
designer/aligncompsdlg.pp svneol=native#text/pascal

View File

@ -1,49 +0,0 @@
{
/***************************************************************************
AbstractCompiler.pp
-------------------
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code 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. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
}
unit AbstractCompiler;
{$mode objfpc}{$H+}
interface
uses
classes, Controls, forms,buttons,sysutils, Graphics,Extctrls;
type
TAbstractCompiler = class
public
procedure Compile; abstract; virtual; //Starts the compiler
property Flags: TCompilerFlags; abstract; virtual; //All avalable flags of the compiler
property OnOutput: TCompilerOutputEvent; abstract; virtual; //Event procedure to get responces back from the compiler
property FileName: TString; abstract; virtual; //Name of the file to compile
end;
implementation
end.

View File

@ -1,72 +0,0 @@
{
/***************************************************************************
AbstractFileSystem.pp
-------------------
***************************************************************************/
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code 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. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************
}
unit AbstractFileSystem;
{$mode objfpc}
interface
uses
classes;
type
TFilename : String;
{ TAbstractFileSystem
FileAge -- Returns the date/time of the file in a longint.
GetFileStream -- Creates and returns a TStream for the Filename
passed into it.
RenameFile -- Renames a file. Returns TRUE is successful
IsReadOnly -- Returns TRUE if file is READONLY.
DeleteFile -- Returns TRUE if successful;
FileExists -- Returns TRUE if the file exists
GetBackupFileName -- Returns a string which represents the backup name for
the filename passed into the function. It uses the
name passed into it to calculate the backup name.
}
TAbstractFileSystem = class
public
Function FileAge(const Filename : TFilename) : Longint; virtual; abstract;
Function GetFileStream(const Filename : TFilename; Mode : Integer): TStream; virtual; abstract;
Function RenameFile(const Oldname, Newname : TFilename): Boolean; virtual; abstract;
Function IsReadOnly(const Filename : TFilename): Boolean; virtual; abstract;
Function DeleteFile(const Filename : TFilename): Boolean; virtual; abstract;
Function FileExists(const Filename : TFilename) : Boolean; virtual; abstract
Function GetBackupFileName(const Filename : TFilename): TFilename; virtual; abstract;
end;
implementation
end.