15 lines
185 B
C++
15 lines
185 B
C++
#ifndef __NODE_H__
|
|
#define __NODE_H__
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
class node {
|
|
public:
|
|
node(const int, node*);
|
|
int id;
|
|
node* next;
|
|
};
|
|
#endif
|