src/RequestedField.h
branchv_0
changeset 28 9172bd97ae99
parent 27 532953173cd5
child 29 6f15f18d2abf
equal deleted inserted replaced
27:532953173cd5 28:9172bd97ae99
    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 	static const string_t GROUP_HASH;
       
    34 	static const string_t GROUP_SCRIPT;
    34 	string_t group;
    35 	string_t group;
    35 	string_t name;
    36 	string_t name;
    36 	std::vector<string_t> aliases;
    37 	std::vector<string_t> aliases;
    37 	/**
    38 	/**
    38 	 * used as an ordered multi-map
    39 	 * used as an ordered multi-map
    56 };
    57 };
    57 
    58 
    58 const string_t RequestedField::GROUP_FILE = L"file";
    59 const string_t RequestedField::GROUP_FILE = L"file";
    59 const string_t RequestedField::GROUP_XATTR = L"xattr";
    60 const string_t RequestedField::GROUP_XATTR = L"xattr";
    60 const string_t RequestedField::GROUP_HASH = L"hash";
    61 const string_t RequestedField::GROUP_HASH = L"hash";
       
    62 const string_t RequestedField::GROUP_SCRIPT = L"script";
    61 
    63 
    62 }
    64 }
    63 }
    65 }
    64 }
    66 }