summaryrefslogtreecommitdiff
path: root/Student.h
diff options
context:
space:
mode:
Diffstat (limited to 'Student.h')
-rw-r--r--Student.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Student.h b/Student.h
new file mode 100644
index 0000000..019651b
--- /dev/null
+++ b/Student.h
@@ -0,0 +1,21 @@
+#ifndef STUDENT_H
+#define STUDENT_H
+
+#include <string>
+using std::string;
+
+class Student
+{
+public:
+ Student(void) { name = "default student"; }
+ Student(string n) { name = n; }
+ ~Student(void) { }
+
+ string getName(void) { return name; }
+ void setName(string n) { name = n; }
+
+private:
+ string name;
+}; // class Student
+
+#endif // STUDENT_H