1
0

copy constructor requires explicit default constructor; refs #28

Cette révision appartient à :
Marc Wäckerlin
2014-01-21 08:20:33 +00:00
Parent a6871ee20b
révision d8f6abe3ce

Voir le fichier

@@ -573,6 +573,9 @@ namespace cryptoki {
CK_VERSION hardwareVersion;
CK_VERSION firmwareVersion;
SlotInfo() {
}
//! Convert C-Structure of Slot Information Into C++
SlotInfo(const CK_SLOT_INFO& cInfo):
slotDescription(cInfo.slotDescription),
@@ -602,6 +605,9 @@ namespace cryptoki {
CK_VERSION hardwareVersion;
CK_VERSION firmwareVersion;
FixString<16> utcTime;
TokenInfo() {
}
//! Convert C-Structure of Token Information Into C++
TokenInfo(const CK_TOKEN_INFO& cInfo):