mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 17:21:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| {  $Id$  }
 | |
| {
 | |
|  /***************************************************************************
 | |
|                             allcodetoolunits.pp
 | |
| 
 | |
|                       dummy unit to compile all units 
 | |
| 
 | |
|  /***************************************************************************
 | |
| }
 | |
| unit AllCodeToolUnits;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   MemCheck,
 | |
|   CodeToolManager, CustomCodeTool, PascalParserTool, PascalReaderTool,
 | |
|   FindDeclarationTool, StdCodeTools, MethodJumpTool, EventCodeTool,
 | |
|   CodeCompletionTool, LinkScanner, FindDeclarationCache, BasicCodeTools,
 | |
|   CodeTree, CodeAtom, SourceChanger, CodeToolMemManager, CodeCache,
 | |
|   KeywordFuncLists, SourceLog, ExprEval, DefineTemplates, FileProcs, CodeToolsStrConsts,
 | |
|   MultiKeyWordListTool, ResourceCodeTool, CodeToolsStructs,
 | |
|   // fast xml units, changes not merged in current fpc
 | |
|   Laz_DOM, Laz_XMLCfg, Laz_XMLRead, Laz_XMLWrite;
 | |
| 
 | |
| 
 | |
| implementation
 | |
| 
 | |
| end.
 | |
| 
 | |
| { =============================================================================
 | |
| 
 | |
|   $Log$
 | |
|   Revision 1.18  2005/01/29 14:36:04  mattias
 | |
|   reactivated fast xml units without widestrings
 | |
| 
 | |
|   Revision 1.17  2005/01/15 13:44:03  vincents
 | |
|   use xml units from fpc, if not compiling with fpc 1.0
 | |
| 
 | |
|   Revision 1.16  2004/11/06 19:49:11  mattias
 | |
|   renamed avl_tree.pas to oldavltree.pas for new fpc 1.9.5
 | |
| 
 | |
|   Revision 1.15  2004/07/10 18:17:28  mattias
 | |
|   added Delphi ToDo support, Application.WndProc, small bugfixes  from Colin
 | |
| 
 | |
|   Revision 1.14  2003/06/19 16:36:35  mattias
 | |
|   started codeexplorer
 | |
| 
 | |
|   Revision 1.13  2003/03/02 09:04:02  mattias
 | |
|   added make resourcestring dialog, not finished
 | |
| 
 | |
|   Revision 1.12  2002/12/24 12:52:53  mattias
 | |
|   fixed ReAllocmem of memcheck and added memcheck for fpc 1.1
 | |
| 
 | |
|   Revision 1.11  2002/10/20 21:54:02  lazarus
 | |
|   MG: fixes for 1.1
 | |
| 
 | |
|   Revision 1.10  2002/04/28 14:10:30  lazarus
 | |
|   MG: fixes for saving resource files
 | |
| 
 | |
|   Revision 1.9  2002/03/28 20:31:01  lazarus
 | |
|   MG: added inputhistory
 | |
| 
 | |
|   Revision 1.8  2002/01/31 16:52:24  lazarus
 | |
|   MG: added base class for mem managers and started node cache
 | |
| 
 | |
|   Revision 1.7  2002/01/28 12:14:56  lazarus
 | |
|   MG: fixed Makefile
 | |
| 
 | |
|   Revision 1.6  2002/01/23 22:12:54  lazarus
 | |
|   MG: external tool output parsing for fpc and make messages
 | |
| 
 | |
|   Revision 1.5  2001/12/15 22:57:19  lazarus
 | |
|   MG: added find declaration (not useful yet)
 | |
| 
 | |
|   Revision 1.4  2001/12/12 21:11:29  lazarus
 | |
|   MG: started finddeclarationtool
 | |
| 
 | |
|   Revision 1.3  2001/11/15 09:08:35  lazarus
 | |
|   MG: splitted codetools.pp, it was a monster
 | |
| 
 | |
|   Revision 1.2  2001/10/24 00:35:53  lazarus
 | |
|   MG: fixes for fpc 1.1: range check errors
 | |
| 
 | |
|   Revision 1.1  2001/10/09 10:04:43  lazarus
 | |
|   MG: added allcodetoolunits.pp
 | |
| 
 | |
| 
 | |
| }
 | 
