BTRFS: Implement some copy relevant helpers.
[haiku.git] / src / apps / screenshot / ScreenshotApp.h
bloba4302fdb396de624ff2eeb10e57bee43f93fae2b
1 /*
2 * Copyright 2010 Wim van der Meer <WPJvanderMeer@gmail.com>
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Wim van der Meer
7 */
8 #ifndef SCREENSHOT_APP_H
9 #define SCREENSHOT_APP_H
12 #include <Application.h>
13 #include <Catalog.h>
16 class Utility;
19 class ScreenshotApp : public BApplication {
20 public:
21 ScreenshotApp();
22 ~ScreenshotApp();
24 void MessageReceived(BMessage* message);
25 void ArgvReceived(int32 argc, char** argv);
26 void ReadyToRun();
28 private:
29 Utility* fUtility;
30 bool fSilent;
31 bool fClipboard;
35 #endif // SCREENSHOT_APP_H