Import
This is the foo function.
This description can have paragraphs...
lists
etc.
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...
lists
etc.
And any quickbook block markup.
def foo():
# return 'em, foo man!
return "foo"
This is the C foo function.
This description can have paragraphs...
lists
etc.
And any quickbook block markup.
char* foo()
{
// return 'em, foo man!
return "foo";
}
class x
{
public:
x() : n(0)
{
}
~x()
{
}
int get() const
{
return n;
}
void set(int n_)
{
n = n_;
}
};
Constructor
Destructor
Get the n
member variable
Set the n
member variable