16 lines
231 B
C++
16 lines
231 B
C++
#ifndef GEMINISERVER_CACHE_FILES_HPP
|
|
#define GEMINISERVER_CACHE_FILES_HPP
|
|
|
|
|
|
namespace gemini {
|
|
/**
|
|
* \brief This class is used to store the files in cache.
|
|
*/
|
|
class CacheFiles {
|
|
|
|
};
|
|
}
|
|
|
|
|
|
#endif //GEMINISERVER_CACHE_FILES_HPP
|