27 lines
525 B
C++
27 lines
525 B
C++
/*
|
|||
|
|
* Copyright 2001-2005, Haiku.
|
||
|
|
* Distributed under the terms of the MIT License.
|
||
|
|
*
|
||
|
|
* Authors:
|
||
|
|
* Erik Jaesler ([email protected])
|
||
|
|
*/
|
||
|
|
#ifndef _APPLICATION_H
|
||
|
|
#define _APPLICATION_H
|
||
|
|
|
||
|
|
#include <Messenger.h>
|
||
|
|
|
||
class BApplication {
|
|||
public:
|
|||
|
|
BApplication(const char* signature);
|
||
|
|
BApplication(const char* signature,
|
||
|
|
status_t* error);
|
||
|
|
virtual ~BApplication();
|
||
|
|
};
|
||
|
|
|
||
|
|
// Global Objects
|
||
|
|
|
||
|
|
extern _IMPEXP_BE BApplication* be_app;
|
||
|
|
extern _IMPEXP_BE BMessenger be_app_messenger;
|
||
|
|
|
||
|
|
#endif // _APPLICATION_H
|