Import

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_;
    }
};

(1)

Constructor

(2)

Destructor

(3)

Get the n member variable

(4)

Set the n member variable