(svn r22564) -Codechange: Rename Get and Store persistent storage functions to GetValue and StoreValue.

This commit is contained in:
terkhen
2011-06-12 20:40:21 +00:00
parent ac4f4447e0
commit 3d96adb03f
7 changed files with 15 additions and 15 deletions

View File

@@ -36,7 +36,7 @@ struct BaseStorageArray
* @param pos the position to write at
* @param value the value to write
*/
virtual void Store(uint pos, int32 value) = 0;
virtual void StoreValue(uint pos, int32 value) = 0;
};
/**
@@ -75,7 +75,7 @@ struct PersistentStorageArray : BaseStorageArray {
* @param pos the position to write at
* @param value the value to write
*/
void Store(uint pos, int32 value)
void StoreValue(uint pos, int32 value)
{
/* Out of the scope of the array */
if (pos >= SIZE) return;
@@ -102,7 +102,7 @@ struct PersistentStorageArray : BaseStorageArray {
* @param pos the position to get the data from
* @return the data from that position
*/
TYPE Get(uint pos) const
TYPE GetValue(uint pos) const
{
/* Out of the scope of the array */
if (pos >= SIZE) return 0;
@@ -147,7 +147,7 @@ struct TemporaryStorageArray : BaseStorageArray {
* @param pos the position to write at
* @param value the value to write
*/
void Store(uint pos, int32 value)
void StoreValue(uint pos, int32 value)
{
/* Out of the scope of the array */
if (pos >= SIZE) return;
@@ -161,7 +161,7 @@ struct TemporaryStorageArray : BaseStorageArray {
* @param pos the position to get the data from
* @return the data from that position
*/
TYPE Get(uint pos) const
TYPE GetValue(uint pos) const
{
/* Out of the scope of the array */
if (pos >= SIZE) return 0;