summaryrefslogtreecommitdiff
path: root/9p12.cpp
diff options
context:
space:
mode:
Diffstat (limited to '9p12.cpp')
-rw-r--r--9p12.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/9p12.cpp b/9p12.cpp
new file mode 100644
index 0000000..fd36354
--- /dev/null
+++ b/9p12.cpp
@@ -0,0 +1,15 @@
+#include <iostream>
+
+/*
+ *
+ * 9.12
+ *
+ *
+ */
+
+int main () {
+
+ // constructor that takes container of same type as itself and creates a copy of the other container.
+ // constructor with iterators take the iterators and iterate with them to copy the values. Container types dont have to be the same, just the element types that have to be the same.
+ return 0;
+}