#ifndef _NC_BENCHMARK_IDL_ #define _NC_BENCHMARK_IDL_ #include #pragma prefix "alma" module NC_BENCHMARK{ const short MAX_MSG_LENGTH = 16384; const string CHANNEL_NAME = "simple_example"; #pragma DCPS_DATA_TYPE "NC_BENCHMARK::Message" struct Message{ long seqnum; unsigned long long time; sequence data; }; interface testNCSupplier : ACS::ACSComponent{ void runTest(in unsigned long frequency, in unsigned long duration); }; }; #endif