mapitovcf.hpp 343 B

123456789101112131415161718192021
  1. #ifndef MAPITOVCF_H
  2. #define MAPITOVCF_H
  3. #include <string>
  4. #include <mapidefs.h>
  5. namespace KC {
  6. class mapitovcf {
  7. public:
  8. virtual ~mapitovcf(void) = default;
  9. virtual HRESULT add_message(IMessage *) = 0;
  10. virtual HRESULT finalize(std::string *) = 0;
  11. };
  12. extern _kc_export HRESULT create_mapitovcf(mapitovcf **);
  13. } /* namespace */
  14. #endif