about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/C++/name-card-test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/3/C++/name-card-test.cc')
-rw-r--r--usth/ICT2.2/labwork/3/C++/name-card-test.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/C++/name-card-test.cc b/usth/ICT2.2/labwork/3/C++/name-card-test.cc
new file mode 100644
index 0000000..b459d0d
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/C++/name-card-test.cc
@@ -0,0 +1,14 @@
+#include <iostream>
+
+#include "name-card.h"
+
+using namespace std;
+
+int
+main ()
+{
+  NameCard card ("Foobar Baz", "420-69", "foo@bar.baz");
+  cout << "Name: " << card.get_name () << endl
+       << "Phone: " << card.get_phone () << endl
+       << "Email: " << card.get_email () << endl;
+}