comparison generator/abstractmetalang.h @ 298:adae77fdc1ea signals

Native QList implementation is now used throughout QtD
author eldar
date Sun, 06 Dec 2009 17:26:37 +0000
parents 8627891e4556
children 04b52676b45f
comparison
equal deleted inserted replaced
297:bc783e20da2b 298:adae77fdc1ea
968 return queryFunctions(Signals 968 return queryFunctions(Signals
969 | Visible 969 | Visible
970 | NotRemovedFromTargetLang); 970 | NotRemovedFromTargetLang);
971 } 971 }
972 972
973 inline bool isNativeContainer(AbstractMetaType *argumentType)
974 {
975 if (argumentType && argumentType->isContainer())
976 if (((const ContainerTypeEntry *)argumentType->typeEntry())->isQList())
977 return true;
978 return false;
979 }
980
973 #endif // ABSTRACTMETALANG_H 981 #endif // ABSTRACTMETALANG_H