mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 12:18:01 +01:00
copy changes from develop
This commit is contained in:
42
PDF/include/Poco/PDF/XMLTemplate.h
Normal file
42
PDF/include/Poco/PDF/XMLTemplate.h
Normal file
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// XMLTemplate.h
|
||||
//
|
||||
|
||||
|
||||
#ifndef PDF_XMLTemplate_INCLUDED
|
||||
#define PDF_XMLTemplate_INCLUDED
|
||||
|
||||
|
||||
#include "Poco/PDF/PDF.h"
|
||||
#include "Poco/PDF/Document.h"
|
||||
#include "Poco/Path.h"
|
||||
#include <istream>
|
||||
|
||||
|
||||
namespace Poco {
|
||||
namespace PDF {
|
||||
|
||||
|
||||
class PDF_API XMLTemplate
|
||||
{
|
||||
public:
|
||||
XMLTemplate(std::istream& xmlStream, const std::string& base = Poco::Path::current());
|
||||
XMLTemplate(const std::string& path);
|
||||
|
||||
~XMLTemplate();
|
||||
|
||||
void create(const std::string& fileName);
|
||||
|
||||
protected:
|
||||
void load(std::istream& xmlStream);
|
||||
|
||||
private:
|
||||
Poco::Path _base;
|
||||
Document* _pDocument;
|
||||
};
|
||||
|
||||
|
||||
} } // namespace Poco::PDF
|
||||
|
||||
|
||||
#endif // PDF_DocumentTemplate_INCLUDED
|
||||
Reference in New Issue
Block a user