133965Sjdp/*
278828Sobrien * Copyright 2006, Haiku. All rights reserved.
3218822Sdim * Distributed under the terms of the MIT License.
433965Sjdp *
533965Sjdp * Authors:
633965Sjdp *		Stephan A��mus <superstippi@gmx.de>
733965Sjdp */
833965Sjdp#ifndef SVG_IMPORTER_H
933965Sjdp#define SVG_IMPORTER_H
1033965Sjdp
1133965Sjdp#include "Importer.h"
1233965Sjdp
1333965Sjdpstruct entry_ref;
1433965Sjdp
1533965Sjdpclass SVGImporter : public Importer {
1633965Sjdp public:
1733965Sjdp								SVGImporter();
1833965Sjdp	virtual						~SVGImporter();
1933965Sjdp
2033965Sjdp			status_t			Import(Icon* icon,
21218822Sdim									   const entry_ref* ref);
2233965Sjdp};
2333965Sjdp
2433965Sjdp#endif // SVG_IMPORTER_H
2533965Sjdp