We need flags to track what properties of the partition change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22609 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2007-10-18 03:39:50 +00:00
parent 77f02aaead
commit 013e7894b7
2 changed files with 25 additions and 1 deletions
@@ -66,6 +66,9 @@ public:
int32 CountChildren() const;
int32 IndexOfChild(BMutablePartition* child) const;
void SetChangeFlags(uint32 flags);
uint32 ChangeFlags() const;
// for the partitioning system managing the parent
void* ChildCookie() const;
void SetChildCookie(void* cookie);
@@ -89,6 +92,7 @@ private:
user_partition_data* fData;
BMutablePartition* fParent;
BList fChildren;
uint32 fChangeFlags;
void* fChildCookie;
};