blob: 776d6496af0b47f04b52e56873f631a1ed586d47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "NAWLink.h"
#include "NAW.h"
NAWLink::NAWLink() { }
NAWLink::NAWLink(const NAW& value, NAWLink* next) {
this->value = new NAW(value);
this->next = next;
}
NAWLink::~NAWLink() {
delete this->value;
}
|