/**============================================================================
 *
 * \file   includes.hpp
 * \brief  Main include file.
 *
 * \author Leblanc Christophe
 * \date   06/11/2012
 *
 *===========================================================================*/

#ifndef TOMOPROCESS_INCLUDES_HPP
#define TOMOPROCESS_INCLUDES_HPP

// Flags for GMM.
#ifndef GMM_USES_LAPACK
#define GMM_USES_LAPACK
#endif

#ifndef GMM_USES_BLAS
#define GMM_USES_BLAS
#endif

// Disable ITK concept checking (mandatory).
#define ITK_CONCEPT_NO_CHECKING

// For srand, rand.
#include <stdlib.h>

// For time.
#include <time.h>

// Image class.
#include "image.hpp"

// Used class
using TOMOPROCESS_GLOBAL_NAMESPACE::TOMOPROCESS_IMAGE_NAMESPACE::Image;

#endif // TOMOPROCESS_INCLUDES_HPP