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