00001 /******************************************************* 00002 * 00003 * $Id$ 00004 * 00005 * This file has been placed in the public domain. 00006 * 00007 *******************************************************/ 00008 00009 00010 00011 #ifndef ACTIONENGINE_FACTORY_H 00012 #define ACTIONENGINE_FACTORY_H 00013 00014 #include <PalmOS.h> 00015 00016 00017 /** 00018 * A factory for the ActionEngine object. Include the correct header and modify createActionEngine accordingly. 00019 */ 00020 #include "DemoActionEngine.h" 00021 static ActionEngine& createActionEngine() 00022 { 00023 return (*(new DemoActionEngine())); 00024 } 00025 00026 00027 #endif