diff --git a/DataStructures/DataStructures.vcxproj b/DataStructures/DataStructures.vcxproj index ff6d9bd..2b8b000 100644 --- a/DataStructures/DataStructures.vcxproj +++ b/DataStructures/DataStructures.vcxproj @@ -129,10 +129,14 @@ + + + + diff --git a/DataStructures/DataStructures.vcxproj.filters b/DataStructures/DataStructures.vcxproj.filters index f1bf248..4c79f20 100644 --- a/DataStructures/DataStructures.vcxproj.filters +++ b/DataStructures/DataStructures.vcxproj.filters @@ -21,6 +21,12 @@ Header Files + + Header Files + + + Header Files + @@ -29,5 +35,11 @@ Source Files + + Source Files + + + Source Files + \ No newline at end of file diff --git a/DataStructures/src/LinkedList/linkedlist.cpp b/DataStructures/src/LinkedList/linkedlist.cpp new file mode 100644 index 0000000..d89d2b7 --- /dev/null +++ b/DataStructures/src/LinkedList/linkedlist.cpp @@ -0,0 +1,6 @@ +#include "linkedlist.h" +#include "linkedlistnode.h" + +namespace Datastructures { + +} \ No newline at end of file diff --git a/DataStructures/src/LinkedList/linkedlist.h b/DataStructures/src/LinkedList/linkedlist.h new file mode 100644 index 0000000..a442904 --- /dev/null +++ b/DataStructures/src/LinkedList/linkedlist.h @@ -0,0 +1,20 @@ +#pragma once +namespace Datastructures { + class LinkedList + { + public: + LinkedList(); + ~LinkedList(); + + private: + + }; + + LinkedList::LinkedList() + { + } + + LinkedList::~LinkedList() + { + } +} \ No newline at end of file diff --git a/DataStructures/src/LinkedList/linkedlistnode.cpp b/DataStructures/src/LinkedList/linkedlistnode.cpp new file mode 100644 index 0000000..1f7cbb1 --- /dev/null +++ b/DataStructures/src/LinkedList/linkedlistnode.cpp @@ -0,0 +1,7 @@ +#include "linkedlistnode.h" + +namespace Datastructures { + namespace Nodes { + + } +} \ No newline at end of file diff --git a/DataStructures/src/LinkedList/linkedlistnode.h b/DataStructures/src/LinkedList/linkedlistnode.h new file mode 100644 index 0000000..bb91a28 --- /dev/null +++ b/DataStructures/src/LinkedList/linkedlistnode.h @@ -0,0 +1,17 @@ +#pragma once +#include "../Generic/undirectednode.h" + +namespace Datastructures { + namespace Nodes { + template + class LinkedListNode : public Generic::UndirectedNode + { + public: + LinkedListNode(); + ~LinkedListNode(); + + private: + + }; + } +} \ No newline at end of file