blob: 801210b75039615f6462fdc3bc99dac9806b472d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "Net.h"
#include <iostream>
#include "prut.h"
void Net::setLevel(SignalLevel level){
this->level = level;
// std::cout << this->size() << std::endl;
prutprintf("%u", this->size());
this->notify();
}
SignalLevel Net::getLevel(){
return this->level;
}
|