00001 00009 #include "DeltaCRLIndicatorFactory.h" 00010 #include "DeltaCRLIndicator.h" 00011 00019 CPKIFDeltaCRLIndicatorFactory::CPKIFDeltaCRLIndicatorFactory() 00020 { 00021 } 00030 void CPKIFDeltaCRLIndicatorFactory::Initialize() 00031 { 00032 } 00040 CPKIFDeltaCRLIndicatorFactory::~CPKIFDeltaCRLIndicatorFactory() 00041 { 00042 } 00050 //CPKIFX509ExtensionPtr CPKIFDeltaCRLIndicatorFactory::create( 00051 // //![in] Reference to an internal representation of an extension containing information to use 00052 // //!to build a CPKIFDeltaCRLIndicator object 00053 // const CACX509V3Extension& ext) 00054 //{ 00055 // CPKIFDeltaCRLIndicatorPtr tmp(new CPKIFDeltaCRLIndicator(ext)); 00056 // return tmp; 00057 //} 00058 00066 CPKIFX509ExtensionPtr CPKIFDeltaCRLIndicatorFactory::create( 00067 bool criticality, 00068 const CPKIFBufferPtr& ext) 00069 { 00070 CPKIFDeltaCRLIndicatorPtr tmp(new CPKIFDeltaCRLIndicator(criticality, ext)); 00071 return tmp; 00072 } 00073 00082 const char* CPKIFDeltaCRLIndicatorFactory::refOID() 00083 { 00084 return CPKIFDeltaCRLIndicator::extOID; 00085 }