MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / add_include

Method add_include

java/idl2jni/codegen/be_global.cpp:273–297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

271}
272
273void
274BE_GlobalData::add_include(const char *file,
275 BE_GlobalData::stream_enum_t which)
276{
277 Includes_t *inc = 0;
278
279 switch (which) {
280 case STUB_H:
281 inc = &ch_;
282 break;
283 case STUB_CPP:
284 inc = &cc_;
285 break;
286 case SKEL_H:
287 inc = &sh_;
288 break;
289 case SKEL_CPP:
290 inc = &sc_;
291 break;
292 default:
293 return;
294 }
295
296 inc->insert(file);
297}
298
299ACE_CString
300BE_GlobalData::get_include_block(BE_GlobalData::stream_enum_t which)

Callers 5

commonSetupMethod · 0.45
write_native_operationFunction · 0.45
gen_interfMethod · 0.45
prep_be_argMethod · 0.45
BE_produceFunction · 0.45

Calls 1

insertMethod · 0.45

Tested by

no test coverage detected