Program Listing for File std_table_collection.hpp

Return to documentation for file (fwdpp/ts/std_table_collection.hpp)

#ifndef FWDPP_TS_STD_TABLE_COLLECTION_HPP
#define FWDPP_TS_STD_TABLE_COLLECTION_HPP

#include <vector>
#include "node.hpp"
#include "edge.hpp"
#include "site.hpp"
#include "mutation_record.hpp"
#include "table_collection.hpp"

namespace fwdpp
{
    namespace ts
    {
        using std_table_collection
            = table_collection<std::vector<node>, std::vector<edge>, std::vector<site>,
                               std::vector<mutation_record>>;
    }
}

#endif