00001 00009 #ifndef __PKIFTSPMEMORYHELPER_H__ 00010 #define __PKIFTSPMEMORYHELPER_H__ 00011 00012 #include "PKIFdll.h" 00013 #include "PKIFTSPDLL.h" 00014 00015 // This class is used internally, so referring 00016 // to Objective structures is permissable 00017 struct PKIFTSPTimeStampReq; 00018 struct PKIFTSPTimeStampResp; 00019 struct PKIFTSPTSTInfo; 00020 00029 class PKIFTSPMemoryHelper 00030 { 00031 public: 00032 // Constructor and Destructor 00033 PKIFTSPMemoryHelper(); 00034 virtual ~PKIFTSPMemoryHelper(); 00035 00036 PKIFTSPTimeStampReq* pRequest; 00037 PKIFTSPTimeStampResp* pResponse; 00038 PKIFTSPTSTInfo* pTSTInfo; 00039 00040 private: 00041 }; 00042 00043 #endif 00044