From fe69d94f3d2dcb37d69ac2d7a0f88ad5fce2ad5c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 1 Mar 2011 11:56:33 +0200 Subject: Add support for embedded database schemas New options: --schema-format, --default-schema. New example: schema/embedded. --- odb/emitter.hxx | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 odb/emitter.hxx (limited to 'odb/emitter.hxx') diff --git a/odb/emitter.hxx b/odb/emitter.hxx new file mode 100644 index 0000000..f68253b --- /dev/null +++ b/odb/emitter.hxx @@ -0,0 +1,49 @@ +// file : odb/emitter.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v3; see accompanying LICENSE file + +#ifndef ODB_EMITTER_HXX +#define ODB_EMITTER_HXX + +#include +#include + +// Emit a code construct one line at a time. +// +struct emitter +{ + virtual void + pre (); + + virtual void + line (const std::string&) = 0; + + virtual void + post (); +}; + +// Send output line-by-line (std::endl marker) to the emitter. +// +class emitter_ostream: public std::ostream +{ +public: + emitter_ostream (emitter& e): std::ostream (&buf_), buf_ (e) {} + +private: + class streambuf: public std::stringbuf + { + public: + streambuf (emitter& e): e_ (e) {} + + virtual int + sync (); + + private: + emitter& e_; + }; + + streambuf buf_; +}; + +#endif // ODB_EMITTER_HXX -- cgit v1.1