IPKIFParseAttributes.h
Go to the documentation of this file.00001
00009 #ifndef __ParseAttributes_H__
00010 #define __ParseAttributes_H__
00011
00012 #include "PKIFCMSDLL.h"
00013 #include "Attribute.h"
00014 #include <vector>
00015
00016 FD_SMART_PTR(CPKIFBuffer);
00017
00024 class PKIFCMS_API IPKIFParseAttributes
00025 {
00026 public:
00027 virtual ~IPKIFParseAttributes ();
00028 virtual void ParseAttributes (CPKIFBufferPtr& buf, std::vector<CPKIFAttributePtr>& exts) = 0;
00029 virtual void ParseAttributes2 (CPKIFBufferPtr& buf, std::vector<CPKIFAttributePtr>& exts) = 0;
00030 };
00031
00032 #endif