Код: Выделить всё
templateКод: Выделить всё
// Foo.h
template
class Foo {
void foo();
void bar();
};
// Foo.hpp
template
void Foo::foo() { }
template
void Foo::bar() { }
Подробнее здесь: https://stackoverflow.com/questions/797 ... emplate-te
Код: Выделить всё
templateКод: Выделить всё
// Foo.h
template
class Foo {
void foo();
void bar();
};
// Foo.hpp
template
void Foo::foo() { }
template
void Foo::bar() { }