00001 /* 00002 Author: Marco Costalba (C) 2005-2006 00003 00004 Copyright: See COPYING file that comes with this distribution 00005 00006 */ 00007 #ifndef CACHE_H 00008 #define CACHE_H 00009 00010 #include "git.h" 00011 00012 class Cache { 00013 public: 00014 static bool save(const QString& gitDir, const RevFileMap& rf, 00015 const StrVect& dirs, const StrVect& files); 00016 static bool load(const QString& gitDir, RevFileMap& rf, 00017 StrVect& dirs, StrVect& files); 00018 }; 00019 00020 #endif