/* * Copyright 2010 Wim van der Meer * Distributed under the terms of the MIT License. * * Authors: * Wim van der Meer */ #ifndef SCREENSHOT_APP_H #define SCREENSHOT_APP_H #include #include class Utility; class ScreenshotApp : public BApplication { public: ScreenshotApp(); ~ScreenshotApp(); void MessageReceived(BMessage* message); void ArgvReceived(int32 argc, char** argv); void ReadyToRun(); private: BCatalog fCatalog; Utility* fUtility; bool fSilent; bool fClipboard; }; #endif // SCREENSHOT_APP_H