1 /* 2 * Copyright 2001-2005, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Erik Jaesler (erik@cgsoftware.com) 7 */ 8 #ifndef _APPLICATION_H 9 #define _APPLICATION_H 10 11 #include <Messenger.h> 12 13 class BApplication { 14 public: 15 BApplication(const char* signature); 16 BApplication(const char* signature, 17 status_t* error); 18 virtual ~BApplication(); 19 }; 20 21 // Global Objects 22 23 extern _IMPEXP_BE BApplication* be_app; 24 extern _IMPEXP_BE BMessenger be_app_messenger; 25 26 #endif // _APPLICATION_H 27