Facebook
From Social Madrill, 8 Years ago, written in Plain Text.
This paste is a reply to Untitled from Wet Duck - go back
Embed
Viewing differences between Untitled and Re: Untitled
template
inline void Element::setPrevious(Element *previous)
{
        this->previous = previous;
}

template
inline Element & Element::getPrevious()
{
        return *previous;
}