diff options
| author | Connor McDowell <[email protected]> | 2024-02-08 14:12:28 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-08 14:12:28 -0800 |
| commit | 5dc32bd7bf9204c4113765f53d84a72ed415b71d (patch) | |
| tree | 4c7424cf2d8d5f58fac8ce025079c451901ea1fc /Inclass 10/Node.h | |
| parent | program.cpp and header.h set up (diff) | |
| download | in-class-exercise-10-connormcdowell275-5dc32bd7bf9204c4113765f53d84a72ed415b71d.tar.xz in-class-exercise-10-connormcdowell275-5dc32bd7bf9204c4113765f53d84a72ed415b71d.zip | |
files and functions set up
Diffstat (limited to 'Inclass 10/Node.h')
| -rw-r--r-- | Inclass 10/Node.h | 15 |
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 |