00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019
00020
00029 #ifndef __MX_IHTTPLOOKUPTABLECOMPONENT_H__
00030 #define __MX_IHTTPLOOKUPTABLECOMPONENT_H__
00031
00032
00033
00034 #define MX_IHTTPLOOKUPTABLECOMPONENT_ID "IHttpLookupTableComponent"
00035
00036
00037
00038
00039 #include "IComponent.h"
00040
00041 #include <mxm/core/mxm_smart.h>
00042
00043
00044 namespace mx {
00045
00046 class IHttpLookupTable;
00047
00049
00055 class IHttpLookupTableComponent : public virtual IComponent {
00056
00057 public:
00060 virtual mxm::smart<IHttpLookupTable> createHttpLookupTable() = 0;
00061 };
00062 };
00063
00064
00065
00066 #endif // __MX_IHTTPLOOKUPTABLECOMPONENT_H__