mirror of https://github.com/AxioDL/nod.git
Added type-aliases for nested NOD types
This commit is contained in:
parent
dc9dcdcd79
commit
322d1c48cd
|
@ -54,7 +54,7 @@ int main(int argc, char* argv[])
|
||||||
if (!disc)
|
if (!disc)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
NOD::DiscBase::IPartition* dataPart = disc->getDataPartition();
|
NOD::Partition* dataPart = disc->getDataPartition();
|
||||||
if (!dataPart)
|
if (!dataPart)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
|
|
@ -253,6 +253,9 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
using Partition = DiscBase::IPartition;
|
||||||
|
using Node = Partition::Node;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __NOD_DISC_BASE__
|
#endif // __NOD_DISC_BASE__
|
||||||
|
|
Loading…
Reference in New Issue