Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef IWORKPROPERTYHANDLER_H_INCLUDED
00011 #define IWORKPROPERTYHANDLER_H_INCLUDED
00012
00013 #include "IWORKXMLContext.h"
00014
00015 namespace libetonyek
00016 {
00017
00018 class IWORKPropertyHandler
00019 {
00020 public:
00021 virtual ~IWORKPropertyHandler() = 0;
00022
00023 virtual IWORKXMLContextPtr_t handle(const int name) = 0;
00024 };
00025
00026 }
00027
00028 #endif // IWORKPROPERTYHANDLER_H_INCLUDED
00029
00030