ff_i_cache

Cache functions.

string GetCacheVar(string sName)
Parameters:
  • sName – Variable name to prefix with CACHE_PREFIX.

Return the cache-prefixed variable name.

Source code

// @code

#include "ff_i_consts"

//! @brief Return the cache-prefixed variable name.
//! @param sName Variable name to prefix with CACHE_PREFIX.
string GetCacheVar(string sName);
string GetCacheVar(string sName)
{
  return CACHE_PREFIX + sName;
}