This is the foo function.
This description can have paragraphs...
And any quickbook block markup.
std::string foo() { // return 'em, foo man! return "foo"; }
This is the Python foo function.
This description can have paragraphs...
And any quickbook block markup.
def foo(): # return 'em, foo man! return "foo"
This is the C foo function.
This description can have paragraphs...
And any quickbook block markup.
char* foo() { // return 'em, foo man! return "foo"; }
class x { public: (1)x() : n(0) { } (2)~x() { } (3)int get() const { return n; } (4)void set(int n_) { n = n_; } };