xref: /haiku/src/preferences/virtualmemory/VirtualMemory.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef VIRTUAL_MEMORY_H
6 #define VIRTUAL_MEMORY_H
7 
8 
9 #include <Application.h>
10 
11 
12 class VirtualMemory : public BApplication {
13 public:
14 					VirtualMemory();
15 	virtual			~VirtualMemory();
16 
17 	virtual	void	ReadyToRun();
18 	virtual	void	AboutRequested();
19 };
20 
21 #endif	/* VIRTUAL_MEMORY_H */
22