blob: 9e3795aa1006f0124d0ab3578a14003f45115541 [file] [log] [blame]
// Copyright (c) 2006- Facebook
// Distributed under the Thrift Software License
//
// See accompanying file LICENSE or visit the Thrift site at:
// http://developers.facebook.com/thrift/
#ifndef T_DOC_H
#define T_DOC_H
/**
* Documentation stubs
*
* @author Charlie Cheever <charlie@facebook.com>
*/
class t_doc {
public:
void set_doc(const std::string& doc) {
doc_ = doc;
has_doc_ = true;
}
const std::string& get_doc() const {
return doc_;
}
bool has_doc() {
return has_doc_;
}
private:
std::string doc_;
bool has_doc_;
};
#endif