Artifact 630926f99e099d6a33eddb0ae10787a9f4e51886:
- File sqlite1c/SQL_DBF/strategycash.h — part of check-in [0086e8b6b0] at 2008-06-24 08:40:35 on branch trunk — (user: orefkov size: 368) [more...]
- File sqlite1c/SQL_DBF/strategycash.h — part of check-in [b88254e4c0] at 2008-07-03 07:34:36 on branch trunk — Переименовано удаленно (user: orefkov size: 368)
// strategycash.h #pragma once class StrategyCash { public: ~StrategyCash(); BOOL getFromCash(sqlite3_index_info* pIdx, CString& cashKey); void addToCash(const CString& cashKey, sqlite3_index_info* pIdx); protected: struct cash_entry { CString cashKey, idxStr; int idxNum, cost; BOOL bOrderBy; CDWordArray args; }; CPtrList cash; };