You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
170 B
15 lines
170 B
3 years ago
|
#include "ns_example.hpp"
|
||
|
|
||
|
namespace ns {
|
||
|
|
||
|
void my_class_in_namespace::add(int value)
|
||
|
{
|
||
|
Sum += value;
|
||
|
}
|
||
|
|
||
|
int my_class_in_namespace::get_sum() const
|
||
|
{
|
||
|
return Sum;
|
||
|
}
|
||
|
}
|