00001 #ifndef _FACIAL_IMAGE_OBJECT 00002 #define _FACIAL_IMAGE_OBJECT 00003 00004 #include "CryptoObject.h" 00005 #include "PivObject.h" 00006 00007 class FacialImageObject : public PivObject 00008 { 00009 public: 00014 FacialImageObject(UTILCardHandle handle); 00015 00019 ~FacialImageObject(void); 00020 00021 const char* getId(); 00022 const char* getDescription(); 00026 CK_OBJECT_CLASS getClass(); 00027 00028 private: 00029 static const char MY_OID[]; 00030 static const char MY_DESC[]; 00031 }; 00032 #endif 00033