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