template class Snippet::ValueBase<0>

Overview

Template specialisation of ValueBase to avoid compiler warnings in the case when a model requires no parameters or state variables More…

#include <snippet.h>

template <>
class ValueBase<0>
{
public:
    // methods

    template <typename... T>
    ValueBase(T&&... vals);

    std::vector<double> getValues() const;
};

Detailed Documentation

Template specialisation of ValueBase to avoid compiler warnings in the case when a model requires no parameters or state variables

Methods

std::vector<double> getValues() const

Gets values as a vector of doubles.