|
Urbi SDK Remote for C++
2.7.5
|
00001 /* 00002 * Copyright (C) 2008-2010, Gostai S.A.S. 00003 * 00004 * This software is provided "as is" without warranty of any kind, 00005 * either expressed or implied, including but not limited to the 00006 * implied warranties of fitness for a particular purpose. 00007 * 00008 * See the LICENSE file for more information. 00009 */ 00010 00011 #include <libport/foreach.hh> 00012 #include <urbi/ustarter.hh> 00013 00014 namespace urbi 00015 { 00016 00017 /*------------------. 00018 | baseURBIStarter. | 00019 `------------------*/ 00020 00021 00022 baseURBIStarter::list_type& 00023 baseURBIStarter::list() 00024 { 00025 static list_type list; 00026 return list; 00027 } 00028 00029 /*---------------------. 00030 | baseURBIStarterHub. | 00031 `---------------------*/ 00032 00033 baseURBIStarterHub::list_type& 00034 baseURBIStarterHub::list() 00035 { 00036 static list_type list; 00037 return list; 00038 } 00039 00040 }