1*c284bb0fSMatt Madia /* 2*c284bb0fSMatt Madia * Copyright (c) 1999-2000, Eric Moon. 3*c284bb0fSMatt Madia * All rights reserved. 4*c284bb0fSMatt Madia * 5*c284bb0fSMatt Madia * Redistribution and use in source and binary forms, with or without 6*c284bb0fSMatt Madia * modification, are permitted provided that the following conditions 7*c284bb0fSMatt Madia * are met: 8*c284bb0fSMatt Madia * 9*c284bb0fSMatt Madia * 1. Redistributions of source code must retain the above copyright 10*c284bb0fSMatt Madia * notice, this list of conditions, and the following disclaimer. 11*c284bb0fSMatt Madia * 12*c284bb0fSMatt Madia * 2. Redistributions in binary form must reproduce the above copyright 13*c284bb0fSMatt Madia * notice, this list of conditions, and the following disclaimer in the 14*c284bb0fSMatt Madia * documentation and/or other materials provided with the distribution. 15*c284bb0fSMatt Madia * 16*c284bb0fSMatt Madia * 3. The name of the author may not be used to endorse or promote products 17*c284bb0fSMatt Madia * derived from this software without specific prior written permission. 18*c284bb0fSMatt Madia * 19*c284bb0fSMatt Madia * THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR 20*c284bb0fSMatt Madia * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 21*c284bb0fSMatt Madia * OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22*c284bb0fSMatt Madia * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 23*c284bb0fSMatt Madia * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 24*c284bb0fSMatt Madia * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 25*c284bb0fSMatt Madia * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 26*c284bb0fSMatt Madia * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 27*c284bb0fSMatt Madia * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28*c284bb0fSMatt Madia * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29*c284bb0fSMatt Madia */ 30*c284bb0fSMatt Madia 31*c284bb0fSMatt Madia 32a0795c6fSMarcus Overhagen // cortex::NodeManager::AddOnHostApp.h 33a0795c6fSMarcus Overhagen // * PURPOSE 34a0795c6fSMarcus Overhagen // Definition of (and provisions for communication with) 35a0795c6fSMarcus Overhagen // a separate BApplication whose single responsibility is 36a0795c6fSMarcus Overhagen // to launch nodes. NodeManager-launched nodes run in 37a0795c6fSMarcus Overhagen // another team, helping to lower the likelihood of a 38a0795c6fSMarcus Overhagen // socially maladjusted young node taking you out. 39a0795c6fSMarcus Overhagen // 40a0795c6fSMarcus Overhagen // * HISTORY 41a0795c6fSMarcus Overhagen // e.moon 6nov99 42f37b1856SAxel Dörfler #ifndef NODE_MANAGER_ADD_ON_HOST_APP_H 43f37b1856SAxel Dörfler #define NODE_MANAGER_ADD_ON_HOST_APP_H 44a0795c6fSMarcus Overhagen 45f37b1856SAxel Dörfler 46f37b1856SAxel Dörfler #include "cortex_defs.h" 47a0795c6fSMarcus Overhagen 48a0795c6fSMarcus Overhagen #include <Application.h> 49a0795c6fSMarcus Overhagen #include <MediaAddOn.h> 50a0795c6fSMarcus Overhagen #include <MediaDefs.h> 51a0795c6fSMarcus Overhagen 52f37b1856SAxel Dörfler 53a0795c6fSMarcus Overhagen __BEGIN_CORTEX_NAMESPACE 54a0795c6fSMarcus Overhagen namespace addon_host { 55a0795c6fSMarcus Overhagen 56f37b1856SAxel Dörfler class App : public BApplication { 57a0795c6fSMarcus Overhagen typedef BApplication _inherited; 58a0795c6fSMarcus Overhagen 59f37b1856SAxel Dörfler public: 60a0795c6fSMarcus Overhagen ~App(); 61a0795c6fSMarcus Overhagen App(); 62a0795c6fSMarcus Overhagen 63f37b1856SAxel Dörfler public: 64a0795c6fSMarcus Overhagen bool QuitRequested(); 65f37b1856SAxel Dörfler void MessageReceived(BMessage* message); 66a0795c6fSMarcus Overhagen 67a0795c6fSMarcus Overhagen }; 68a0795c6fSMarcus Overhagen 69f37b1856SAxel Dörfler } // addon_host 70a0795c6fSMarcus Overhagen __END_CORTEX_NAMESPACE 711fb778c8SJérôme Duval 72f37b1856SAxel Dörfler #endif // NODE_MANAGER_ADD_ON_HOST_APP_H 73