1.6 Document Conventions
This document uses the following types of conventions:
• C++ classes, methods, in-line code snippets, and types are shown in Courier New font.
• Parameters, filenames, tools, utilities, and directories are shown in Bold font.
• Document titles and variable values are shown in italics.
• When initially introduced, concepts are shown in Bold, Italics.
• Longer code examples are shown in Courier New font against a gray background. For example:
|
AppClient client; OmmConsumer consumer( OmmConsumerConfig().operationModel( OmmConsumerConfig::UserDispatchEnum ).host( "localhost:14002" ).username( "user" ) ); consumer.registerClient( ReqMsg().domainType( MMT_MARKET_BY_PRICE ).serviceName( "DIRECT_FEED" ).name( "BBH.ITC" ).privateStream( true ), client ); unsigned long long startTime = getCurrentTime(); |
|