cmCTestSVN: Add the Repositories list and the RootInfo pointer

The Repository list will contain the SVNInfo of all the repositories
(root and external ones).  The RootInfo pointer will point to the
SVNInfo structure of the root repository.
This commit is contained in:
Xavier Besseron 2012-08-24 10:47:59 +02:00 committed by Brad King
parent 2f204bc176
commit 8d1e10296a
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ private:
// Extended revision structure to include info about external it refers to.
struct Revision;
// Info of all the repositories (root, externals and nested ones).
std::list<SVNInfo> Repositories;
// Pointer to the infos of the root repository.
SVNInfo* RootInfo;
std::string LoadInfo();
void LoadModifications();
void LoadRevisions();