It now reads both stdin and the database
[backups/.git] / filedata.hpp
index 123ef86fe42453beb4a980a91b77165b5733c155..629f933493bffcc733a44cfbfc5c89d2bc2bef75 100644 (file)
@@ -2,6 +2,7 @@
 #define FILEDATA_H
 
 #include <string>
+#include <set>
 
 class FileData {
   public:
@@ -45,4 +46,6 @@ class FileDataPtrCmp {
   std::less<std::string> cmp;
 };
 
+typedef std::set<FileData*,FileDataPtrCmp> file_set;
+
 #endif