示例#1
0
PropertyTable::PropertyTable(const PropertyTable &other)
    :
        QObject()
{
    // Reparent.
    setParent(other.parent());
    // We just copy one container from another.
    m_properties = other.m_properties;
}