aboutsummaryrefslogtreecommitdiff
path: root/Inclass 10/Node.h
diff options
context:
space:
mode:
Diffstat (limited to 'Inclass 10/Node.h')
-rw-r--r--Inclass 10/Node.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/Inclass 10/Node.h b/Inclass 10/Node.h
index 6f70f09..8c11984 100644
--- a/Inclass 10/Node.h
+++ b/Inclass 10/Node.h
@@ -1 +1,14 @@
-#pragma once
+#ifndef NODE_HEADER
+#define NODE_HEADER
+#include "Header.h"
+
+
+struct Node
+{
+ int _data;
+ Node* next;
+};
+
+
+
+#endif NODE_HEADER