00001 00009 #ifndef __HoldInstructionCode_H__ 00010 #define __HoldInstructionCode_H__ 00011 00012 #if _MSC_VER > 1000 00013 #pragma once 00014 #endif // _MSC_VER > 1000 00015 00016 00017 #include "PKIFdll.h" 00018 // #define CAC_API_FACTORY CAC_API 00019 #define CAC_API_FACTORY 00020 00021 #include "X509Extension.h" 00022 00023 struct CPKIFHoldInstructionCodeImpl; 00024 00039 class CAC_API CPKIFHoldInstructionCode : public CPKIFX509Extension 00040 { 00041 public: 00042 CPKIFHoldInstructionCode(); 00043 //CPKIFHoldInstructionCode(const CACX509V3Extension& ext); 00044 CPKIFHoldInstructionCode(const bool& criticality, const CPKIFBufferPtr& ext); 00045 virtual ~CPKIFHoldInstructionCode(); 00046 00047 static char extOID[]; 00048 const CPKIFOIDPtr oid() const; 00049 00050 CPKIFOIDPtr HoldInstruction() const; 00051 00052 CPKIFBufferPtr value() const; 00053 00054 private: 00055 CPKIFHoldInstructionCode(const CPKIFHoldInstructionCode& ext); 00056 CPKIFHoldInstructionCode& operator=(const CPKIFHoldInstructionCode& rhs); //added 4/6/2004 00057 00058 struct CPKIFHoldInstructionCodeImpl *m_impl; 00059 }; 00060 DECLARE_SMART_POINTERS(CPKIFHoldInstructionCode); 00061 #endif