9 #ifndef CPPTEMPLATE_TEMPLATE_CLASS_H
10 #define CPPTEMPLATE_TEMPLATE_CLASS_H
27 explicit Template(
int filed) noexcept : _field(filed) {}
36 int field() const noexcept {
return _field; }
43 int Method(
int parameter)
const noexcept;
Template class inline implementation.
Template(int filed) noexcept
Default class constructor.
int field() const noexcept
Get field value.
static int StaticMethod(int parameter) noexcept
Some static method.
Template(Template &&) noexcept=default
int Method(int parameter) const noexcept
Some method.
Template(const Template &) noexcept=default
C++ Template project definitions.