summaryrefslogtreecommitdiff
path: root/cli/context.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli/context.cxx')
-rw-r--r--cli/context.cxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/cli/context.cxx b/cli/context.cxx
new file mode 100644
index 0000000..3c62e38
--- /dev/null
+++ b/cli/context.cxx
@@ -0,0 +1,20 @@
+// file : cli/context.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#include "context.hxx"
+
+context::
+context (std::ostream& os_)
+ : data_ (new (shared) data),
+ os (os_)
+{
+}
+
+context::
+context (context& c)
+ : data_ (c.data_),
+ os (c.os)
+{
+}