Esempio n. 1
0
//
// MetaTable(const MetaTable &)
//
// Copy constructor
//
MetaTable::MetaTable(const MetaTable &other) : Super(other)
{
   pImpl = new MetaTablePimpl();
   copyTableFrom(&other);
}
Esempio n. 2
0
//
// MetaTable(const MetaTable &)
//
// Copy constructor
//
MetaTable::MetaTable(const MetaTable &other) : MetaObject(other)
{
   pImpl = new metaTablePimpl();
   copyTableFrom(&other);
}