/**
 * @file
 * @author Lars Johannesen <lj@halloffame.dk>
 * @version 1.0
 *
 * @section LICENSE
 * This program is licensed under GPL3, see LICENSE
 * 
 * @section DESCRIPTION
 * Main include for ecglib
 */

#ifndef ECGLIB_INCLUDES
#define ECGLIB_INCLUDES 1

#include <armadillo>

//#include <ecglib_bits/config.hpp>
#include <ecglib_bits/annotation.hpp>
#include <ecglib_bits/ecgdata.hpp>
#include <ecglib_bits/ecglib.hpp>

// QRS detector
#include <ecglib_bits/qrsdetectors/u3.hpp>
#include <ecglib_bits/qrsdetectors/detector.hpp>
#include <ecglib_bits/qrsdetectors/rrpredictor.hpp>
#include <ecglib_bits/qrsdetectors/qrsdetector.hpp>

// Utility
#include <ecglib_bits/util/util.hpp>

#endif
