Class that holds Course information

Dependents:   Course_Example course_input class_finder

Revision:
3:e2024ec77d96
Parent:
2:8f163dc0b6c4
Child:
4:bc4b05dacca3
--- a/Course.cpp	Wed Dec 07 01:41:40 2016 +0000
+++ b/Course.cpp	Wed Dec 07 02:03:35 2016 +0000
@@ -22,7 +22,7 @@
 map<string, string> create_names_map() {
     map<string, string> m;
     m["CLH"] = "Clough";
-    m["COC"] = "College of Computing";
+    m["COC"] = "CoC";
     m["KLS"] = "Klaus";
     m["VAN"] = "Van Leer";
     return m;
@@ -59,7 +59,7 @@
     if (hour == 12)
         return 0;
     else
-        return 1;
+        return hour;
 }
 
 int Course :: getMinute() {