diff -r f0f4c44c4c7bad13f5de25fda22974a3c78d9b9c -r 6c891dee9ea8aa45c3f80d237efe83c36a1e2778 cpp/algorithms/algorithms.vcxproj
--- a/cpp/algorithms/algorithms.vcxproj Sat Feb 16 11:44:51 2013 -0600
+++ b/cpp/algorithms/algorithms.vcxproj Sat Feb 16 12:05:15 2013 -0600
@@ -74,6 +74,10 @@
+
+
+
+
diff -r f0f4c44c4c7bad13f5de25fda22974a3c78d9b9c -r 6c891dee9ea8aa45c3f80d237efe83c36a1e2778 cpp/algorithms/algorithms.vcxproj.filters
--- a/cpp/algorithms/algorithms.vcxproj.filters Sat Feb 16 11:44:51 2013 -0600
+++ b/cpp/algorithms/algorithms.vcxproj.filters Sat Feb 16 12:05:15 2013 -0600
@@ -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 -r f0f4c44c4c7bad13f5de25fda22974a3c78d9b9c -r 6c891dee9ea8aa45c3f80d237efe83c36a1e2778 cpp/algorithms/main.cpp
--- a/cpp/algorithms/main.cpp Sat Feb 16 11:44:51 2013 -0600
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-#include
-
-using namespace std;
-
-int main()
-{
-
-}
\ No newline at end of file
diff -r f0f4c44c4c7bad13f5de25fda22974a3c78d9b9c -r 6c891dee9ea8aa45c3f80d237efe83c36a1e2778 cpp/algorithms/src/Algorithm.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/algorithms/src/Algorithm.h Sat Feb 16 12:05:15 2013 -0600
@@ -0,0 +1,17 @@
+#ifndef ALGORITHM_H
+#define ALGORITHM_H
+
+#include
+#include
+
+template
+class DataAlgorithm
+{
+private:
+ std::vector _container;
+public:
+ std::string toString();
+
+}
+
+#endif
\ No newline at end of file
diff -r f0f4c44c4c7bad13f5de25fda22974a3c78d9b9c -r 6c891dee9ea8aa45c3f80d237efe83c36a1e2778 cpp/algorithms/src/main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cpp/algorithms/src/main.cpp Sat Feb 16 12:05:15 2013 -0600
@@ -0,0 +1,8 @@
+#include
+
+using namespace std;
+
+int main()
+{
+
+}
\ No newline at end of file