XmlUpdateContext |
#include <DbXml.hpp>class DbXml::XmlUpdateContext { public: XmlUpdateContext(XmlContainer &container); XmlUpdateContext(const XmlUpdateContext &); ~XmlUpdateContext(); XmlUpdateContext &operator = (const XmlUpdateContext &) ... };
The XmlUpdateContext class encapsulates the context within which update operations are performed against an XmlContainer. Use of this class is optional, but passing an object of this class through the XmlContainer interface methods can provide performance benefits, as the context contains objects that can be reused multiple times.
A copy constructor and assignment operator are provided for this class. The class is implemented using a handle-body idiom. When a handle is copied both handles maintain a reference to the same body.
Copyright (c) 1996-2003 Sleepycat Software, Inc. - All rights reserved.