src/RequestedField.h
branchv_0
changeset 27 532953173cd5
parent 24 4353cd19a6b5
child 28 9172bd97ae99
equal deleted inserted replaced
26:1b14ef641c7b 27:532953173cd5
    28 
    28 
    29 class RequestedField {
    29 class RequestedField {
    30 public:
    30 public:
    31 	static const string_t GROUP_FILE;
    31 	static const string_t GROUP_FILE;
    32 	static const string_t GROUP_XATTR;
    32 	static const string_t GROUP_XATTR;
       
    33 	static const string_t GROUP_HASH;
    33 	string_t group;
    34 	string_t group;
    34 	string_t name;
    35 	string_t name;
    35 	std::vector<string_t> aliases;
    36 	std::vector<string_t> aliases;
    36 	/**
    37 	/**
    37 	 * used as an ordered multi-map
    38 	 * used as an ordered multi-map
    54 	}
    55 	}
    55 };
    56 };
    56 
    57 
    57 const string_t RequestedField::GROUP_FILE = L"file";
    58 const string_t RequestedField::GROUP_FILE = L"file";
    58 const string_t RequestedField::GROUP_XATTR = L"xattr";
    59 const string_t RequestedField::GROUP_XATTR = L"xattr";
       
    60 const string_t RequestedField::GROUP_HASH = L"hash";
    59 
    61 
    60 }
    62 }
    61 }
    63 }
    62 }
    64 }