From 671db9465a50526a8da7d740cc46d2ecb42e6639 Mon Sep 17 00:00:00 2001
From: Fennel Kora <99110900+fencore@users.noreply.github.com>
Date: Tue, 25 Jul 2023 11:39:22 -0400
Subject: [PATCH] Added framework member functions in digraph.h
---
Project12/Project12.vcxproj | 40 ++++++++++++++---------------
Project12/Project12.vcxproj.filters | 10 ++++++++
Project12/digraph.h | 8 ++++++
3 files changed, 38 insertions(+), 20 deletions(-)
diff --git a/Project12/Project12.vcxproj b/Project12/Project12.vcxproj
index 9de571c..2adb380 100644
--- a/Project12/Project12.vcxproj
+++ b/Project12/Project12.vcxproj
@@ -17,7 +17,6 @@
Release
x64
-
16.0
@@ -53,27 +52,24 @@
true
Unicode
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Level3
@@ -130,9 +126,13 @@
true
-
-
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/Project12/Project12.vcxproj.filters b/Project12/Project12.vcxproj.filters
index a8a6563..8f27287 100644
--- a/Project12/Project12.vcxproj.filters
+++ b/Project12/Project12.vcxproj.filters
@@ -14,4 +14,14 @@
rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+ Source Files
+
+
+
+
+ Header Files
+
+
\ No newline at end of file
diff --git a/Project12/digraph.h b/Project12/digraph.h
index 74e30bd..c6b0ae9 100644
--- a/Project12/digraph.h
+++ b/Project12/digraph.h
@@ -25,7 +25,15 @@ public:
};
class graph {
+private:
+ vector nodesList;
+public:
+ void addNewNode(vector n) {
+
+ }
+
+ void
};
#endif
\ No newline at end of file