
function TUF1_CacheData() {};
new TUF1_CacheData();
TUF1_CacheData.prototype.cc_CacheData = new Array();
TUF1_CacheData.prototype.Cache = function (_Index,_Data){
	this.cc_CacheData[_Index] = _Data;
}
TUF1_CacheData.prototype.IsInCache = function (_Index){
	if (this.cc_CacheData[_Index] == null ) {
		return false;
	}else{
		return true;
	}
}
TUF1_CacheData.prototype.getData = function (_Index){
	if (this.IsInCache(_Index)) {
		return this.cc_CacheData[_Index];	
	}else{
		return null;
	}	
}
TUF1_CacheData.prototype.Clear = function (){
	this.cc_CacheData = new Array();
}



