diff options
Diffstat (limited to 'src/extension/input.h')
| -rw-r--r-- | src/extension/input.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/extension/input.h b/src/extension/input.h index 93b000388..5952c3c04 100644 --- a/src/extension/input.h +++ b/src/extension/input.h @@ -44,15 +44,16 @@ public: const char *what() const noexcept override { return "Open was cancelled"; } }; - Input (Inkscape::XML::Node * in_repr, - Implementation::Implementation * in_imp); - ~Input () override; - bool check () override; + Input(Inkscape::XML::Node *in_repr, Implementation::Implementation *in_imp, std::string *base_directory); + ~Input() override; + + bool check() override; + SPDocument * open (gchar const *uri); gchar * get_mimetype (); gchar * get_extension (); - gchar * get_filetypename (); - gchar * get_filetypetooltip (); + const char * get_filetypename (bool translated=false); + const char * get_filetypetooltip (bool translated=false); bool prefs (gchar const *uri); }; |
