vfs: check userland buffers before reading them.
[haiku.git] / src / preferences / screen / ScreenApplication.h
blob54b662dc17b6f9c14ac01413209a99c95952937e
1 /*
2 * Copyright 2001-2005, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Rafael Romo
7 * Stefano Ceccherini (burton666@libero.it)
8 * Andrew Bachmann
9 * Sergei Panteleev
11 #ifndef SCREEN_APPLICATION_H
12 #define SCREEN_APPLICATION_H
15 #include <Application.h>
18 class ScreenWindow;
20 class ScreenApplication : public BApplication {
21 public:
22 ScreenApplication();
24 virtual void MessageReceived(BMessage *message);
25 virtual void AboutRequested();
27 private:
28 ScreenWindow *fScreenWindow;
31 #endif /* SCREEN_APPLICATION_H */