mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
15 lines
410 B
C++
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 *>;
|