Files
koreader-mirror/frontend/cacheitem.lua
2014-03-13 21:52:43 +08:00

20 lines
313 B
Lua

--[[
Inheritable abstraction for cache items
--]]
local CacheItem = {
size = 64, -- some reasonable default for simple Lua values / small tables
}
function CacheItem:new(o)
o = o or {}
setmetatable(o, self)
self.__index = self
return o
end
function CacheItem:onFree()
end
return CacheItem