|
|
@ -587,7 +587,7 @@ namespace cryptoki { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
struct TokenInfo; // forward declaration
|
|
|
|
struct TokenInfo; // forward declaration
|
|
|
|
std::ostream& operator<<(std::ostream& out, const TokenInfo& ti); |
|
|
|
inline std::ostream& operator<<(std::ostream& out, const TokenInfo& ti); |
|
|
|
|
|
|
|
|
|
|
|
struct TokenInfo { |
|
|
|
struct TokenInfo { |
|
|
|
FixString<32> label; |
|
|
|
FixString<32> label; |
|
|
@ -638,7 +638,7 @@ namespace cryptoki { |
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
std::ostream& operator<<(std::ostream& out, const TokenInfo& ti) { |
|
|
|
inline std::ostream& operator<<(std::ostream& out, const TokenInfo& ti) { |
|
|
|
return out |
|
|
|
return out |
|
|
|
<<"label="<<ti.label<<std::endl |
|
|
|
<<"label="<<ti.label<<std::endl |
|
|
|
<<"manufacturerID="<<ti.manufacturerID<<std::endl |
|
|
|
<<"manufacturerID="<<ti.manufacturerID<<std::endl |
|
|
|