Page MenuHomePhorge

Node.cpp
No OneTemporary

Size
349 B
Referenced Files
None
Subscribers
None

Node.cpp

#include "Node.h"
#define MAX_WORKCYCLE 4294967295
Node :: Node() {
workingCycle = 1;
}
bool Node :: set_workingCycle(unsigned int workingCycle) {
if(workingCycle <= MAX_WORKCYCLE) {
this->workingCycle = workingCycle;
return true;
}
return false;
}
unsigned int Node :: get_workingCycle() {
return workingCycle;
}

File Metadata

Mime Type
text/x-c
Expires
Sun, Jul 12, 6:53 PM (2 h, 59 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
345240
Default Alt Text
Node.cpp (349 B)

Event Timeline