libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / apps / icon-o-matic / import_export / Importer.h
blob0791506e901365585d627ee346ffbbe572ba9a86
1 /*
2 * Copyright 2006, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Stephan Aßmus <superstippi@gmx.de>
7 */
8 #ifndef IMPORTER_H
9 #define IMPORTER_H
12 #include <SupportDefs.h>
14 #include "IconBuild.h"
17 _BEGIN_ICON_NAMESPACE
18 class Icon;
19 _END_ICON_NAMESPACE
21 _USING_ICON_NAMESPACE
24 class Importer {
25 public:
26 Importer();
27 virtual ~Importer();
29 status_t Init(Icon* icon);
31 int32 StyleIndexFor(int32 savedIndex) const;
32 int32 PathIndexFor(int32 savedIndex) const;
34 private:
35 int32 fStyleIndexOffset;
36 int32 fPathIndexOffset;
39 #endif // IMPORTER_H