00001 #if !defined _COMMONINCS_HPP 00002 #define _COMMONINCS_HPP 00003 //============================================================================= 00004 // 00005 // XDFLengine library 00006 // 00007 //----------------------------------------------------------------------------- 00008 // COMMONINCS.HPP 00009 //----------------------------------------------------------------------------- 00016 //_____________________________________________________________________________ 00017 // 00018 // Copyright (C) 2003 Guillaume Baurand. All Rights Reserved. 00019 // 00020 // This file is part of the XDFLengine project. 00021 // 00022 // The XDFLengine is free software; you can redistribute it and/or modify 00023 // it under the terms of the GNU General Public License as published by 00024 // the Free Software Foundation; either version 2 of the License, or 00025 // (at your option) any later version. 00026 // 00027 // This program is distributed in the hope that it will be useful, 00028 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00029 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00030 // GNU General Public License for more details. 00031 // 00032 // You should have received a copy of the GNU General Public License 00033 // along with this program; if not, write to the Free Software 00034 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 00035 // USA. 00036 // 00037 // For more information, 00038 // contact : guillaume@baurand.net 00039 // or visit : http://xdflengine.sourceforge.net 00040 // 00041 //============================================================================= 00042 00043 00044 // Config 00045 # include "config/config.hpp" 00046 00047 // Std 00048 00049 #include <stdlib.h> 00050 00051 #ifdef PLATFORM_WIN32_MSVC 00052 # ifdef _DEBUG 00053 # include "crtdbg.h" 00054 # endif 00055 #endif 00056 00057 #include <stdio.h> 00058 #include <string.h> 00059 00060 // Dev 00061 # include "dev/dev.hpp" 00062 00063 // XML 00064 # include "utils/utils.hpp" 00065 # include "utils/vaarray.hpp" 00066 00067 00068 // Exception 00069 # include "processor/xmlflowexception.hpp" 00070 00071 00072 00073 #endif 00074 00075