Just a regular commit
[backups/.git] / filedata.hpp
index 0393ecd69c159ceb4d88ef53e6dfddfe4dd123b6..86e5b0ebf3629137ccdf830b8c1f5591b63550bf 100644 (file)
@@ -7,7 +7,7 @@ class FileData {
               std::string,
               std::string,
               std::string,
-              unsigned int,
+              unsigned long,
               unsigned long long,
               std::string
               );
@@ -16,11 +16,13 @@ class FileData {
     FileData();
     FileData( const FileData & );
 
-    char               type;
+    char               filetype;
     std::string        permissions;
-    std::string        user;
-    std::string        group;
-    unsigned int       size;
+    std::string        username;
+    std::string        groupname;
+    unsigned long      filesize;
     unsigned long long modified_date;
-    std::string        name;
+    std::string        filename;
+
+    unsigned long long last_backup_date;
 };