1typedef unsigned short ushort;
2class QChar {
3public:
4    QChar( const QChar& c );
5    ushort ucs;
6};
7inline QChar::QChar( const QChar& c ) : ucs( c.ucs ) { };
8class QString { };
9class KoAutoFormat {
10public:
11    struct TypographicQuotes     { QChar begin, end; };
12    TypographicQuotes getConfigTypographicDoubleQuotes() const     {
13        return m_typographicDoubleQuotes;
14    }
15    TypographicQuotes m_typographicDoubleQuotes;
16};
17class KoAutoFormatDia {
18    QChar oDoubleBegin, oDoubleEnd;
19    KoAutoFormat * m_docAutoFormat;
20    bool noSignal;
21    void changeAutoformatLanguage(void);
22};
23void KoAutoFormatDia::changeAutoformatLanguage(void)
24{
25  oDoubleEnd= m_docAutoFormat->getConfigTypographicDoubleQuotes().end;
26}
27