xref: /haiku/src/build/libbe/app/Application.cpp (revision 16d5c24e533eb14b7b8a99ee9f3ec9ba66335b1e)
1 /*
2  * Copyright 2006, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include <Application.h>
7 
8 
9 BApplication::BApplication(const char *signature)
10 {
11 }
12 
13 
14 BApplication::BApplication(const char *signature, status_t *error)
15 {
16 	*error = B_OK;
17 }
18 
19 
20 BApplication::~BApplication()
21 {
22 }
23 
24