X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;ds=sidebyside;f=filedata.hpp;fp=filedata.hpp;h=86e5b0ebf3629137ccdf830b8c1f5591b63550bf;hb=b6878571e12b7d5de53721f12e8fb956d07e44d6;hp=0393ecd69c159ceb4d88ef53e6dfddfe4dd123b6;hpb=730dd480e7020e009ac5205693be92a71242fc06;p=backups%2F.git diff --git a/filedata.hpp b/filedata.hpp index 0393ecd..86e5b0e 100644 --- a/filedata.hpp +++ b/filedata.hpp @@ -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; };