From ae92f1143ca8834eee26ee3661041dedfdb24c7f Mon Sep 17 00:00:00 2001 From: Kerry Liu Date: Sun, 28 May 2017 12:56:13 -0400 Subject: [PATCH] Made a src folder so it's all professional! --- .gitignore | 1 + Makefile => scr/Makefile | 0 device.cpp => scr/device.cpp | 0 device.h => scr/device.h | 0 graph.cpp => scr/graph.cpp | 0 graph.h => scr/graph.h | 0 legend.cpp => scr/legend.cpp | 0 legend.h => scr/legend.h | 0 main.cpp => scr/main.cpp | 0 tree.cpp => scr/tree.cpp | 0 tree.h => scr/tree.h | 0 window.cpp => scr/window.cpp | 0 window.h => scr/window.h | 0 13 files changed, 1 insertion(+) rename Makefile => scr/Makefile (100%) rename device.cpp => scr/device.cpp (100%) rename device.h => scr/device.h (100%) rename graph.cpp => scr/graph.cpp (100%) rename graph.h => scr/graph.h (100%) rename legend.cpp => scr/legend.cpp (100%) rename legend.h => scr/legend.h (100%) rename main.cpp => scr/main.cpp (100%) rename tree.cpp => scr/tree.cpp (100%) rename tree.h => scr/tree.h (100%) rename window.cpp => scr/window.cpp (100%) rename window.h => scr/window.h (100%) diff --git a/.gitignore b/.gitignore index fb76cff..46124c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ Visor .vscode +src/Visor diff --git a/Makefile b/scr/Makefile similarity index 100% rename from Makefile rename to scr/Makefile diff --git a/device.cpp b/scr/device.cpp similarity index 100% rename from device.cpp rename to scr/device.cpp diff --git a/device.h b/scr/device.h similarity index 100% rename from device.h rename to scr/device.h diff --git a/graph.cpp b/scr/graph.cpp similarity index 100% rename from graph.cpp rename to scr/graph.cpp diff --git a/graph.h b/scr/graph.h similarity index 100% rename from graph.h rename to scr/graph.h diff --git a/legend.cpp b/scr/legend.cpp similarity index 100% rename from legend.cpp rename to scr/legend.cpp diff --git a/legend.h b/scr/legend.h similarity index 100% rename from legend.h rename to scr/legend.h diff --git a/main.cpp b/scr/main.cpp similarity index 100% rename from main.cpp rename to scr/main.cpp diff --git a/tree.cpp b/scr/tree.cpp similarity index 100% rename from tree.cpp rename to scr/tree.cpp diff --git a/tree.h b/scr/tree.h similarity index 100% rename from tree.h rename to scr/tree.h diff --git a/window.cpp b/scr/window.cpp similarity index 100% rename from window.cpp rename to scr/window.cpp diff --git a/window.h b/scr/window.h similarity index 100% rename from window.h rename to scr/window.h