1 /* 2 * Copyright 2001-2010, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Michael Pfeiffer 7 */ 8 #ifndef _PRINTERS_H 9 #define _PRINTERS_H 10 11 12 #include <Application.h> 13 #include <Catalog.h> 14 15 #include "ScreenSettings.h" 16 17 18 #define PRINTERS_SIGNATURE "application/x-vnd.Be-PRNT" 19 20 21 class PrintersApp : public BApplication { 22 typedef BApplication Inherited; 23 public: 24 PrintersApp(); 25 void ReadyToRun(); 26 void MessageReceived(BMessage* msg); 27 void ArgvReceived(int32 argc, char** argv); 28 }; 29 30 #endif // _PRINTERS_H 31