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.
|
#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;
|
|
}
|
|
}
|