Program Listing for File deleter.hpp

Return to documentation for file (fwdpp/gsl/deleter.hpp)

#ifndef __FWDPP_SUGAR_GSL_DELETER_HPP__
#define __FWDPP_SUGAR_GSL_DELETER_HPP__

#include <gsl/gsl_rng.h>
#include <memory>

namespace fwdpp
{
    namespace gsl
    {
        using gsl_rng_ptr_t = std::unique_ptr<gsl_rng, void (*)(gsl_rng *)>;
    }
}

#endif