blob: 93e14d84aa28c1c530d980a98ac6f26bb923f02a [file] [log] [blame]
#ifndef T_FIELD_H
#define T_FIELD_H
#include <string>
/**
* Class to represent a field in a thrift structure. A field has a data type,
* a symbolic name, and a numeric identifier.
*
* @author Mark Slee <mcslee@facebook.com>
*/
class t_field {
public:
t_field(t_type* type, std::string name) :
type_(type),
name_(name),
key_(0) {}
t_field(t_type* type, std::string name, int32_t key) :
type_(type),
name_(name),
key_(key) {}
~t_field() {}
t_type* get_type() const {
return type_;
}
const std::string& get_name() const {
return name_;
}
int32_t get_key() const {
return key_;
}
private:
t_type* type_;
std::string name_;
int32_t key_;
};
#endif