config.asn
来自「ncbi源码」· ASN 代码 · 共 46 行
ASN
46 行
------ Definitions for abstract configuration interfaces---NCBI-Config DEFINITIONS ::=BEGINEXPORTS PluginConfigCache, PluginConfigValues, KeyValue;------ PluginConfigValues defines a saved, named set of configuration values.------ It can group other sets of values by referring to their ids (data|include).--- It can default its values to one other with the same type by referring to its--- style (refer-to-style).PluginConfigCache ::= SEQUENCE { data SET OF PluginConfigValues}PluginConfigValues ::= SEQUENCE { id PluginConfigID, refer-to-style VisibleString OPTIONAL, data CHOICE { keyvals SET OF KeyValue, -- each with a unique key. include SET OF PluginConfigID -- each with a unique type. }}PluginConfigID ::= SEQUENCE { type VisibleString, style VisibleString}KeyValue ::= SEQUENCE { key VisibleString, val CHOICE { str VisibleString, keyvals SET OF KeyValue -- each with a unique key. }}END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?