A character string declaration would cause a C or C++ const char *
declaration to be generated:
ASN.1 production:
<name> <string-type> ::= <value>
Generated code:
const char* <name> = <value>;
In this definition, <string-type> could be any of the standard 8-bit characters string types such as IA5String, PrintableString, etc.
Code generation is not currently supported for value declarations of larger character string types such as BMPString.