1

I am using the Ubuntu OS to create a library written in c++.
I've created an shared library and now I need to document my work.
I would like to know what is the smartest and fastest way to do it?

the_drow
  • 18,571
  • 25
  • 126
  • 193
sunset
  • 1,359
  • 5
  • 22
  • 35

1 Answers1

7

If you're looking for API documentation of your classes / types, you might want to look into Doxygen.

albert
  • 8,285
  • 3
  • 19
  • 32
Christian.K
  • 47,778
  • 10
  • 99
  • 143
  • I've installed on Ubuntu doxygen-gui. How to work with it?THX – sunset Aug 08 '11 at 12:35
  • 1
    Try [first steps](http://www.stack.nl/~dimitri/doxygen/starting.html) from the [manual](http://www.stack.nl/~dimitri/doxygen/manual.html). If you have specific questions/problems, you should consider asking a new question on SO. – Christian.K Aug 08 '11 at 13:11