#include "ct_abstractitemattributemodelt.h" template CT_AbstractItemAttributeModelT::CT_AbstractItemAttributeModelT(const QString &displayableName) : InheritedT(displayableName) { } template bool CT_AbstractItemAttributeModelT::visitChildrens(const typename InheritedT::ChildrenVisitor& visitor) const { Q_UNUSED(visitor) return true; } template bool CT_AbstractItemAttributeModelT::isEmpty() const { return true; }