a1f8d8a11c
modified versions of the new config headers. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34224 a95241bf-73f2-0310-859d-f6bbb57e9c96
33 lines
587 B
C++
33 lines
587 B
C++
/*
|
|
* Copyright 2001-2005, Haiku.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Erik Jaesler (erik@cgsoftware.com)
|
|
*/
|
|
#ifndef _APPLICATION_H
|
|
#define _APPLICATION_H
|
|
|
|
#include <Messenger.h>
|
|
|
|
|
|
struct app_info;
|
|
|
|
|
|
class BApplication {
|
|
public:
|
|
BApplication(const char* signature);
|
|
BApplication(const char* signature,
|
|
status_t* error);
|
|
virtual ~BApplication();
|
|
|
|
status_t GetAppInfo(app_info* info);
|
|
};
|
|
|
|
// Global Objects
|
|
|
|
extern _IMPEXP_BE BApplication* be_app;
|
|
extern _IMPEXP_BE BMessenger be_app_messenger;
|
|
|
|
#endif // _APPLICATION_H
|