server/dep/acelite/ace/XML_Utils/XSCRT/Writer.hpp
2020-02-17 09:23:51 +00:00

78 lines
1.1 KiB
C++

// file : XSCRT/Writer.hpp
// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id : $Id: Writer.hpp 95832 2012-06-06 13:09:50Z johnnyw $
#ifndef XSCRT_WRITER_HPP
#define XSCRT_WRITER_HPP
#include <stack>
#include <string>
#include "ace/XML_Utils/XSCRT/XML.hpp"
namespace XSCRT
{
template <typename C>
class Writer
{
public:
Writer (XML::Element<C>& e)
: attr__ (0)
{
push_ (e);
}
protected:
// This c-tor should never be called.
//
Writer ()
{
abort ();
}
public:
void
push_ (XML::Element<C> const& e)
{
stack_.push (e);
}
void
pop_ ()
{
stack_.pop ();
}
XML::Element<C>&
top_ ()
{
return stack_.top ();
}
public:
XML::Attribute<C>*
attr_ ()
{
return attr__;
}
void
attr_ (XML::Attribute<C>* a)
{
attr__ = a;
}
private:
std::stack<XML::Element<C> > stack_;
XML::Attribute<C>* attr__;
private:
Writer (Writer const&);
void
operator= (Writer const&);
};
}
#endif // XSCRT_WRITER_HPP