1 | // |
2 | // AutoPtr.h |
3 | // |
4 | // Library: XML |
5 | // Package: DOM |
6 | // Module: DOM |
7 | // |
8 | // Import Poco::AutoPtr into the XML namespace. |
9 | // |
10 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
11 | // and Contributors. |
12 | // |
13 | // SPDX-License-Identifier: BSL-1.0 |
14 | // |
15 | |
16 | |
17 | #ifndef DOM_DOMAutoPtr_INCLUDED |
18 | #define DOM_DOMAutoPtr_INCLUDED |
19 | |
20 | |
21 | #include "Poco/XML/XML.h" |
22 | #include "Poco/AutoPtr.h" |
23 | |
24 | |
25 | namespace Poco { |
26 | namespace XML { |
27 | |
28 | |
29 | using Poco::AutoPtr; |
30 | |
31 | |
32 | } } // namespace Poco::XML |
33 | |
34 | |
35 | #endif // DOM_DOMAutoPtr_INCLUDED |
36 | |