コード例 #1
0
ファイル: metaapi.cpp プロジェクト: camgunz/eternity
//
// MetaTable(const MetaTable &)
//
// Copy constructor
//
MetaTable::MetaTable(const MetaTable &other) : Super(other)
{
   pImpl = new MetaTablePimpl();
   copyTableFrom(&other);
}
コード例 #2
0
ファイル: metaapi.cpp プロジェクト: doomtech/eternity
//
// MetaTable(const MetaTable &)
//
// Copy constructor
//
MetaTable::MetaTable(const MetaTable &other) : MetaObject(other)
{
   pImpl = new metaTablePimpl();
   copyTableFrom(&other);
}