00001 /*****************************************************************************\ 00002 * * 00003 * Name : simpleton service main program * 00004 * Author : Chris Koeritz * 00005 * * 00006 * Purpose: * 00007 * * 00008 * Provides the main function for a simple example service as well as * 00009 * containing the information required for starting the service up properly. * 00010 * * 00011 ******************************************************************************* 00012 * Copyright (c) 2000-$now By Author. This program is free software; you can * 00013 * redistribute it and/or modify it under the terms of the GNU General Public * 00014 * License as published by the Free Software Foundation; either version 2 of * 00015 * the License or (at your option) any later version. This is online at: * 00016 * http://www.fsf.org/copyleft/gpl.html * 00017 * Please send any updates to: fred@gruntose.com * 00018 \*****************************************************************************/ 00019 00020 #include "simple_service.h" 00021 00022 #include <basis/istring.h> 00023 #include <data_struct/static_memory_gremlin.h> 00024 00025 HOOPLE_STARTUP_CODE; 00026 00027 int main(int argc, char **argv) 00028 { 00029 simple_service simp; 00030 return simp.initialize(argc, argv, ""); 00031 } 00032
1.5.1