xref: /haiku/src/add-ons/translators/rtf/convert.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /*
2  * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CONVERT_H
6 #define CONVERT_H
7 
8 #include <DataIO.h>
9 
10 #include "RTF.h"
11 
12 
13 extern status_t convert_to_stxt(RTF::Header &header, BDataIO &target);
14 extern status_t convert_to_plain_text(RTF::Header &header, BPositionIO &target);
15 
16 #endif	/* CONVERT_H */
17