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 16 #define PRINTERS_SIGNATURE "application/x-vnd.Be-PRNT" 17 18 19 class PrintersApp : public BApplication { 20 typedef BApplication Inherited; 21 public: 22 PrintersApp(); 23 void ReadyToRun(); 24 void MessageReceived(BMessage* msg); 25 void ArgvReceived(int32 argc, char** argv); 26 }; 27 28 #endif // _PRINTERS_H 29