Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
C++ Application Development with Code::Blocks

You're reading from   C++ Application Development with Code::Blocks Using Code::Blocks it's possible for C++ developers to create application consistency across multiple platforms. This book takes you through the process from installation to implementing advanced features, all with a user-friendly approach.

Arrow left icon
Product type Paperback
Published in Oct 2013
Publisher
ISBN-13 9781783283415
Length 128 pages
Edition Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
BIPLAB MODAK BIPLAB MODAK
Author Profile Icon BIPLAB MODAK
BIPLAB MODAK
Arrow right icon
View More author details
Toc

Documentation generation


Documentation of code is very important for any project. It builds an overview of the written code, explains its usage, and helps developers understand the code. Code::Blocks allows generation of code documentation from the IDE itself.

Doxygen is a standard tool to create documentation from annotated C++ files. Code::Blocks comes with a plugin called DoxyBlocks that creates an interface with the externally installed doxygen tool.

We need to download and install doxygen tool first. Subsequently we can use DoxyBlocks plugin to generate documentation. Perform the following steps:

  1. Download doxygen from the following URL—http://www.stack.nl/~dimitri/doxygen/download.html. Also download doxygen-x.x.x-setup.exe file. Double-click on that file to install it.

  2. We need to connect DoxyBlocks plugin with doxygen tool. Go to DoxyBlocks | Open preferences… menu option. The following screenshot will be displayed:

  3. Click on the General tab. Next click on the Browse button next to Path To doxygen option and set the path to C:\Program Files\doxygen\bin\doxygen.exe.

  4. Next create a new C++ console project and add the following code to wizard generated main.cpp file:

    class A {
        public:
            A() {};
            ~A() {};
            virtual int CallMe(int a) = 0;
    };
    
    class B : public A {
        public:
            B() {};
            ~B() {};
            int CallMe(int a) {
                return a;
            }
    };
    
    int main() {
        return 0;
    }
  5. Navigate to DoxyBlocks | Extract documentation menu option or press Ctrl + Alt+ E key combination. Code::Blocks will now generate documentation of the project inside doxygen folder.

  6. Go to DoxyBlocks | Run HTML menu option or press the Ctrl + Alt + H key combination to open the newly created documentation in a Web browser.

    We can also add additional detailed description of function, class, etc to create a detailed documentation.

  7. Move the cursor to the beginning of B::CallMe() function and click on the DoxyBlocks | /** Block comment menu option or press Ctrl + Alt + B key combination. Code::Blocks will analyze the function parameters and will insert a default comment block suitable for doxygen tool. Adjust the comment block and our code will look similar to the following snippet:

            ~B() {};
            /** \brief Virtual function CallMe() is defined here
             *
             * \param a int
             * \return int
             *
             */
            int CallMe(int a) {
  8. Press Ctrl + Alt + E key combination to regenerate the documentation and use the Ctrl + Alt + H key combination to open it inside Web browser. Documentation of B::CallMe() will look similar to the following screenshot:

We can also customize DoxyBlocks plugin option to use advanced features of doxygen.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image