Just a regular commit
[backups/.git] / filedata.cpp
1 #include <string>
2
3 #include "filedata.hpp"
4
5 using namespace std;
6
7 FileData::FileData( char               _type,
8                     string             _permissions,
9                     string             _user,
10                     string             _group,
11                     unsigned long      _size,
12                     unsigned long long _modified_date,
13                     string             _name )
14 : filetype( _type ),
15   permissions( _permissions ),
16   username( _user ),
17   groupname( _group ),
18   filesize( _size ),
19   modified_date( _modified_date ),
20   filename( _name ) {}