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