X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fio%2Fxsltstream.h;h=32d9d12f86c6ed005d8963587c7527912d72e5e6;hb=ea479a317d3fb2890308a1cc99ee730dd7b76de8;hp=5e293abc66bfeceba2ba99a3cad4f8daee3855a4;hpb=6b15695578f07a3f72c4c9475c1a261a3021472a;p=inkscape.git diff --git a/src/io/xsltstream.h b/src/io/xsltstream.h index 5e293abc6..32d9d12f8 100644 --- a/src/io/xsltstream.h +++ b/src/io/xsltstream.h @@ -5,9 +5,9 @@ * * * Authors: - * Bob Jamison + * Bob Jamison * - * Copyright (C) 2004 Inkscape.org + * Copyright (C) 2004-2008 Inkscape.org * * Released under GNU GPL, read the file 'COPYING' for more information */ @@ -35,9 +35,25 @@ class XsltStyleSheet public: + /** + * Constructor with loading + */ XsltStyleSheet(InputStream &source) throw (StreamException); - - ~XsltStyleSheet(); + + /** + * Simple constructor, no loading + */ + XsltStyleSheet(); + + /** + * Loader + */ + bool read(InputStream &source); + + /** + * Destructor + */ + virtual ~XsltStyleSheet(); xsltStylesheetPtr stylesheet;