TuttleOFX
1
|
00001 #ifndef _TUTTLE_HOST_OFX_MESSAGE_HPP_ 00002 #define _TUTTLE_HOST_OFX_MESSAGE_HPP_ 00003 00004 #include "OfxhException.hpp" 00005 #include "OfxhIObject.hpp" 00006 #include <cstdarg> 00007 #include <string> 00008 00009 namespace tuttle { 00010 namespace host { 00011 namespace ofx { 00012 00013 class OfxhIMessage : virtual public OfxhIObject 00014 { 00015 public: 00016 virtual ~OfxhIMessage() {} 00017 #ifndef SWIG 00018 virtual void vmessage( const char* type, 00019 const char* id, 00020 const char* format, 00021 va_list args ) const OFX_EXCEPTION_SPEC = 0; 00022 #endif 00023 }; 00024 00025 } 00026 } 00027 } 00028 00029 #endif 00030