|
|
|
@ -56,7 +56,10 @@ namespace CSMWorld
|
|
|
|
|
/// Works like getAppendIndex unless an overloaded method uses the record pointer
|
|
|
|
|
/// to get additional info about the record that results in an alternative index.
|
|
|
|
|
|
|
|
|
|
int getAppendIndex (const std::string& id, UniversalId::Type type) const override { return getInsertIndex(id, type); }
|
|
|
|
|
int getAppendIndex(const std::string& id, UniversalId::Type type) const override
|
|
|
|
|
{
|
|
|
|
|
return getInsertIndex(id, type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool reorderRows(int baseIndex, const std::vector<int>& newOrder) override;
|
|
|
|
|
///< Reorder the rows [baseIndex, baseIndex+newOrder.size()) according to the indices
|
|
|
|
|