CppTemplate 1.0.5.0
C++ Template Library
Loading...
Searching...
No Matches
class.cpp
Go to the documentation of this file.
1
9#include "template/class.h"
10
11#include <cstdlib>
12
13namespace CppTemplate {
14
15int Template::Method(int parameter) const noexcept
16{
17 return _field + rand() % parameter;
18}
19
20} // namespace CppTemplate
Template class definition.
int Method(int parameter) const noexcept
Some method.
Definition class.cpp:15
C++ Template project definitions.
Definition class.h:12