namespace PT renamed to pt

This commit is contained in:
2021-05-20 20:59:12 +02:00
parent d66a36cf21
commit e48a28a5c8
100 changed files with 597 additions and 597 deletions

View File

@@ -57,7 +57,7 @@ public:
reading all space
(sets and groups)
*/
PT::Space * GetSpace();
pt::Space * GetSpace();
/*
@@ -110,7 +110,7 @@ private:
# sets should have a unique name
# groups don't have a name
*/
PT::Space space;
pt::Space space;
/*
@@ -143,13 +143,13 @@ private:
Groups * groups;
SortFunHelper(Groups * pgroups) : groups(pgroups) {};
size_t SortValue(const std::wstring & val);
bool operator()(PT::Space * sp1, PT::Space * sp2);
bool operator()(pt::Space * sp1, pt::Space * sp2);
};
void ReindexGroups(GroupIndex & group_index, PT::Space & set);
void SortValues(PT::Space & group);
void ReindexGroups(GroupIndex & group_index, pt::Space & set);
void SortValues(pt::Space & group);
};