cyphesis/tests/stubs/common/stubVariable_custom.h
2017-08-02 10:17:34 +02:00

15 lines
410 B
C++

//Add custom implementations of stubbed functions here; this file won't be rewritten when re-generating stubs.
#ifndef STUB_Variable_Variable
#define STUB_Variable_Variable
template <typename T>
Variable<T>::Variable(const T & variable)
: m_variable(variable)
{
}
#endif //STUB_Variable_Variable
template class Variable<int>;
template class Variable<std::string>;
template class Variable<const char *>;