mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 14:21:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			303 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			303 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit regplotpanel;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   Classes, SysUtils,
 | |
|   plotpanel,
 | |
|   exprplotpanel,
 | |
|   lresources;
 | |
| 
 | |
| Procedure Register;
 | |
| 
 | |
| implementation
 | |
| 
 | |
| {$R regplotpanel.res}
 | |
| 
 | |
| Procedure Register;
 | |
| 
 | |
| begin
 | |
|   Classes.RegisterComponents('Misc',[TPlotFunctionPanel, TPlotExpressionPanel]);
 | |
| end;
 | |
| 
 | |
| end.
 | |
| 
 | 
