• Davis King's avatar
    Moved example into its own folder · 80d44a99
    Davis King authored
    --HG--
    rename : docs/htmlify/example.xml => docs/htmlify/to_xml_example/example.xml
    rename : docs/htmlify/minus.gif => docs/htmlify/to_xml_example/minus.gif
    rename : docs/htmlify/output.xml => docs/htmlify/to_xml_example/output.xml
    rename : docs/htmlify/plus.gif => docs/htmlify/to_xml_example/plus.gif
    rename : docs/htmlify/stylesheet.xsl => docs/htmlify/to_xml_example/stylesheet.xsl
    rename : docs/htmlify/test.cpp => docs/htmlify/to_xml_example/test.cpp
    extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403729
    80d44a99
test.cpp 1.42 KB
#include <iostream>

// ----------------------------------------------------------------------------------------

using namespace std;

// ----------------------------------------------------------------------------------------

class test
{
    /*!
        WHAT THIS OBJECT REPRESENTS
            This is a simple test class that doesn't do anything
    !*/

public:

    typedef int type;

    test ();
    /*!
        ensures
            - constructs a test object
    !*/

    void print () const;
    /*!
        ensures
            - prints a message to the screen
    !*/

};

// ----------------------------------------------------------------------------------------

test::test() {}

void test::print() const
{
    cout << "A message!" << endl;
}

// ----------------------------------------------------------------------------------------

int add_numbers (
    int a, 
    int b
)
/*!
    ensures
        - returns a + b
!*/
{
    return a + b;
}

// ----------------------------------------------------------------------------------------

void a_function (
)
/*!P
    This is a function which won't show up in the output of htmlify --to-xml
    because of the presence of the P in the above /*!P above.   
!*/
{
}

// ----------------------------------------------------------------------------------------

int main()
{
    test a;
    a.print();
}

// ----------------------------------------------------------------------------------------