constructor
parent
db7f826c04
commit
8b6f2978f5
|
@ -13,6 +13,10 @@ namespace BLT {
|
||||||
struct node {
|
struct node {
|
||||||
T t;
|
T t;
|
||||||
node* next;
|
node* next;
|
||||||
|
node(const T& t, node* next){
|
||||||
|
this->t = t;
|
||||||
|
this->next = next;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
|
Loading…
Reference in New Issue