xref: /haiku/src/apps/icon-o-matic/import_export/svg/SVGImporter.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 /*
2  * Copyright 2006, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Stephan Aßmus <superstippi@gmx.de>
7  */
8 #ifndef SVG_IMPORTER_H
9 #define SVG_IMPORTER_H
10 
11 #include "Importer.h"
12 
13 struct entry_ref;
14 
15 class SVGImporter : public Importer {
16  public:
17 								SVGImporter();
18 	virtual						~SVGImporter();
19 
20 			status_t			Import(Icon* icon,
21 									   const entry_ref* ref);
22 };
23 
24 #endif // SVG_IMPORTER_H
25