Code

Add CMakeLists for the filters directory.
[inkscape.git] / src / io / xsltstream.h
index 5e293abc66bfeceba2ba99a3cad4f8daee3855a4..32d9d12f86c6ed005d8963587c7527912d72e5e6 100644 (file)
@@ -5,9 +5,9 @@
  *
  *
  * Authors:
- *   Bob Jamison <rjamison@titan.com>
+ *   Bob Jamison <ishmalius@gmail.com>
  *
- * 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;