00001 #ifndef TKDEPS_PARENT_H00002 #define TKDEPS_PARENT_H00003namespace tkdeps_parent {
00004struct Test00005 {
00006doublea;
00007doubleb;
00008 };
00009
00010 // This type is for testing the specific handling of fixed size arrays. Only00011 // one convertion function should be generated for any array size.00012struct FixedSizeArray00013 {
00014doublea[10];
00015doubleb[20];
00016 };
00017 }
00018 #endif