xref: /haiku/src/apps/screenshot/Screenshot.h (revision a4ef4a49150f118d47324242917a596a3f8f8bd5)
1 /*
2  * Copyright Karsten Heimrich, host.haiku@gmx.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #include <Application.h>
6 
7 
8 class Screenshot : public BApplication {
9 public:
10 						Screenshot();
11 	virtual				~Screenshot();
12 
13 	virtual	void		ReadyToRun();
14 	virtual	void		RefsReceived(BMessage* message);
15 	virtual	void		ArgvReceived(int32 argc, char** argv);
16 
17 private:
18 			void		_ShowHelp() const;
19 
20 private:
21 	bool				fArgvReceived;
22 	bool				fRefsReceived;
23 };
24