Artifact [630926f99e] Вы: nobody
Вход

Artifact 630926f99e099d6a33eddb0ae10787a9f4e51886:


// 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;
};