Home | History | Annotate | Download | only in executor

Lines Matching defs:Writer

23  * \brief XML Writer.
51 class Writer
71 Writer (std::ostream& dst);
72 ~Writer (void);
74 Writer& operator<< (const BeginElement& begin);
75 Writer& operator<< (const Attribute& attribute);
76 Writer& operator<< (const EndElementType& end);
79 Writer& operator<< (const T& value); //!< Write data.
82 Writer (const Writer& other);
83 Writer& operator= (const Writer& other);
102 Writer& Writer::operator<< (const T& value)