made UniqueExpireStrategies member protected

This commit is contained in:
Peter Schojer 2007-10-29 07:15:24 +00:00
parent 1e10c31a18
commit 9381a34928

View File

@ -1,7 +1,7 @@
// //
// UniqueExpireStrategy.h // UniqueExpireStrategy.h
// //
// $Id: //poco/Main/Foundation/include/Poco/UniqueExpireStrategy.h#2 $ // $Id: //poco/Main/Foundation/include/Poco/UniqueExpireStrategy.h#3 $
// //
// Library: Foundation // Library: Foundation
// Package: Cache // Package: Cache
@ -146,7 +146,7 @@ public:
} }
} }
private: protected:
Keys _keys; /// For faster replacement of keys, the iterator points to the _keyIndex map Keys _keys; /// For faster replacement of keys, the iterator points to the _keyIndex map
TimeIndex _keyIndex; /// Maps time to key value TimeIndex _keyIndex; /// Maps time to key value
}; };