49 lines
1.0 KiB
C++
49 lines
1.0 KiB
C++
/*
|
|
* File: DUtils.h
|
|
* Project: DUtils library
|
|
* Author: Dorian Galvez-Lopez
|
|
* Date: October 6, 2009
|
|
* Description: include file for including all the library functionalities
|
|
* License: see the LICENSE.txt file
|
|
*
|
|
*/
|
|
|
|
/*! \mainpage DUtils Library
|
|
*
|
|
* DUtils library for C++:
|
|
* Collection of classes with general utilities for C++ applications.
|
|
*
|
|
* Written by Dorian Galvez-Lopez,
|
|
* University of Zaragoza
|
|
*
|
|
* Check my website to obtain updates: http://webdiis.unizar.es/~dorian
|
|
*
|
|
* \section license License
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License (LGPL) as
|
|
* published by the Free Software Foundation, either version 3 of the License,
|
|
* or any later version.
|
|
*
|
|
*/
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef __D_UTILS__
|
|
#define __D_UTILS__
|
|
|
|
/// Several utilities for C++ programs
|
|
namespace DUtils
|
|
{
|
|
}
|
|
|
|
// Exception
|
|
#include "DException.h"
|
|
|
|
#include "Timestamp.h"
|
|
// Random numbers
|
|
#include "Random.h"
|
|
|
|
|
|
#endif
|