src/RequestedField.h
branchv_0
changeset 31 c64e1588f428
parent 29 6f15f18d2abf
child 44 dc5c210295d0
equal deleted inserted replaced
30:56409232e1a1 31:c64e1588f428
    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_EXEC;
    33 	static const string_t GROUP_STREAMLET;
    34 	integer_t id;
    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 	/**
    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_EXEC = L"exec";
    61 const string_t RequestedField::GROUP_STREAMLET = L"streamlet";
    62 
    62 
    63 }
    63 }
    64 }
    64 }
    65 }
    65 }