From bcb9b0de81b8a9f602751eb6000815f4bf10ba03 Mon Sep 17 00:00:00 2001 From: Alexander Huddleston Date: Sun, 27 Sep 2015 15:38:01 -0500 Subject: [PATCH] Added namespace --- DBApp.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DBApp.cpp b/DBApp.cpp index d12b1c2..82f49d6 100755 --- a/DBApp.cpp +++ b/DBApp.cpp @@ -6,7 +6,9 @@ //#include "Parserv3.h" //#include "DBEngine.h" +using namespace std; + int main() { - cout << "Testing."; -} \ No newline at end of file + cout << "Testing." << endl; +}