diff options
Diffstat (limited to 'src/cite/ooo/ooohandler.h')
-rw-r--r-- | src/cite/ooo/ooohandler.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/cite/ooo/ooohandler.h b/src/cite/ooo/ooohandler.h new file mode 100644 index 0000000..fd7f308 --- /dev/null +++ b/src/cite/ooo/ooohandler.h @@ -0,0 +1,54 @@ +/*************************************************************************** + copyright : (C) 2005-2006 by Robby Stephenson + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of version 2 of the GNU General Public License as * + * published by the Free Software Foundation; * + * * + ***************************************************************************/ + +#ifndef TELLICO_CITE_OOOHANDLER_H +#define TELLICO_CITE_OOOHANDLER_H + +#include "../handler.h" + +namespace rtl { + class OUString; +} + +namespace Tellico { + namespace Cite { + +/** + * @author Robby Stephenson + */ +class OOOHandler : public Handler { +public: + OOOHandler(); + + virtual State state() const; + virtual bool connect(); + virtual bool cite(Cite::Map& fields); + +private: +// static QString OUString2Q(const rtl::OUString& str); +// static rtl::OUString QString2OU(const QString& str); + static Cite::Map s_fieldsMap; + static void buildFieldsMap(); + + Cite::Map convertFields(Cite::Map& values); + + class Interface; + Interface* m_interface; + // mutable since I want to change it inside state() + mutable State m_state; +}; + + } // end namespace +} // end namespace + +#endif |