xref: /haiku/src/apps/screenshot/ScreenshotApp.h (revision 002f37b0cca92e4cf72857c72ac95db5a8b09615)
1 /*
2  * Copyright 2010 Wim van der Meer <WPJvanderMeer@gmail.com>
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Wim van der Meer
7  */
8 #ifndef SCREENSHOT_APP_H
9 #define SCREENSHOT_APP_H
10 
11 
12 #include <Application.h>
13 #include <Catalog.h>
14 
15 
16 class Utility;
17 
18 
19 class ScreenshotApp : public BApplication {
20 public:
21 						ScreenshotApp();
22 						~ScreenshotApp();
23 
24 			void		MessageReceived(BMessage* message);
25 			void		ArgvReceived(int32 argc, char** argv);
26 			void		ReadyToRun();
27 
28 private:
29 			Utility*	fUtility;
30 			bool		fSilent;
31 			bool		fClipboard;
32 };
33 
34 
35 #endif // SCREENSHOT_APP_H
36