00001 /* 00002 * File: DUtils.h 00003 * Project: DUtils library 00004 * Author: Dorian Galvez-Lopez 00005 * Date: October 6, 2009 00006 * Description: include file for including all the library functionalities 00007 * 00008 * 00009 * This program is free software: you can redistribute it and/or modify 00010 * it under the terms of the GNU Lesser General Public License as published by 00011 * the Free Software Foundation, either version 3 of the License, or 00012 * any later version. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public License 00020 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00021 * 00022 */ 00023 00024 #pragma once 00025 00026 #ifndef __D_UTILS__ 00027 #define __D_UTILS__ 00028 00029 // Exception 00030 #include "DException.h" 00031 00032 // Files 00033 #include "FileModes.h" 00034 #include "LineFile.h" 00035 #include "BinaryFile.h" 00036 #include "FileFunctions.h" 00037 00038 // Timestamp 00039 #include "Timestamp.h" 00040 #include "Profiler.h" 00041 00042 // Random numbers 00043 #include "Random.h" 00044 00045 // Math 00046 #include "Math.hpp" 00047 00048 // STL 00049 #include "STL.h" 00050 00051 // Strings 00052 #include "StringFunctions.h" 00053 00054 #endif