Girish,
On 2011-06-02 at 19:17, Girish Nanjundiah wrote:
> [...] how we are meant to access the CICM::CharString identifier attribute
> of the CICM::Key class.
An attribute in IDL gets mapped to _get_{attribute}() and _set_{attribute}()
methods for the object. For example, the CryptoModule::sym_key_manager
attribute is a read-only attribute so it becomes:
SymKeyManager* CryptoModule::_get_sym_key_manager(void) {
return &(this->sym_key_manager);
};
See:
http://code.google.com/p/ietf-cicm/source/browse/cpp/cicm.cpp#47
For your case, you'd want to define something similar.
Let me know if works for your situation.
Lev
_______________________________________________
cicm mailing list
[email protected]
https://www.ietf.org/mailman/listinfo/cicm