00001 /* 00002 This file is part of the Virtual Object System of 00003 the Interreality project (http://interreality.org). 00004 00005 Copyright (C) 2001-2003 Peter Amstutz 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Lesser General Public 00009 License as published by the Free Software Foundation; either 00010 version 2 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public 00018 License along with this library; if not, write to the Free Software 00019 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 00021 Peter Amstutz <tetron@interreality.org> 00022 */ 00023 00024 00025 /** @file Master include file which includes the other VOS headers in 00026 a specific order that takes care of the forward dependencies as 00027 well as a bunch of other symbols that need to be defined and 00028 headers that have to be included. 00029 */ 00030 00031 #ifndef _VOS_HH_ 00032 #define _VOS_HH_ 00033 00034 #include <vos/corelibs/vos/accesscontrol.hh> 00035 #include <vos/corelibs/vos/listener.hh> 00036 #include <vos/corelibs/vos/localmetaobject.hh> 00037 #include <vos/corelibs/vos/localsite.hh> 00038 #include <vos/corelibs/vos/localsocketsite.hh> 00039 #include <vos/corelibs/vos/localvobject.hh> 00040 #include <vos/corelibs/vos/log.hh> 00041 #include <vos/corelibs/vos/message.hh> 00042 #include <vos/corelibs/vos/messageblock.hh> 00043 #include <vos/corelibs/vos/messagecontext.hh> 00044 #include <vos/corelibs/vos/metaobject.hh> 00045 #include <vos/corelibs/vos/msglexer.hh> 00046 #include <vos/corelibs/vos/refcount.hh> 00047 #include <vos/corelibs/vos/remotemetaobject.hh> 00048 #include <vos/corelibs/vos/remotesite.hh> 00049 #include <vos/corelibs/vos/remotesocketsite.hh> 00050 #include <vos/corelibs/vos/remotestreamsite.hh> 00051 #include <vos/corelibs/vos/remotevobject.hh> 00052 #include <vos/corelibs/vos/site.hh> 00053 #include <vos/corelibs/vos/timer.hh> 00054 #include <vos/corelibs/vos/url.hh> 00055 #include <vos/corelibs/vos/vobject.hh> 00056 00057 using namespace VOS; 00058 00059 #endif