| 31 | } |
| 32 | |
| 33 | void dapiReportContextState ( Context & ctx, const char * category, const char * name, const TypeInfo * info, void * data ) { |
| 34 | for_each_debug_agent([&](const DebugAgentPtr & pAgent){ |
| 35 | pAgent->onVariable(&ctx,category,name,(TypeInfo*)info,data); |
| 36 | }); |
| 37 | } |
| 38 | |
| 39 | void dapiSimulateContext ( Context & ctx ) { |
| 40 | for_each_debug_agent([&]( const DebugAgentPtr & pAgent ){ |
nothing calls this directly
no test coverage detected