1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-07-02 14:04:22 +00:00

Add typedefs to SetListingView<B>

This commit is contained in:
King_DuckZ 2016-02-17 08:54:38 +01:00
parent e718a21e49
commit bb1148863d
2 changed files with 6 additions and 3 deletions

View file

@ -105,6 +105,9 @@ namespace mchlib {
std::size_t m_level_offset;
};
using MutableSetListingView = SetListingView<false>;
using ConstSetListingView = SetListingView<true>;
class SetListing {
public:
typedef std::vector<FileRecordData> ListType;