brobeson / Tools

Scripts written to aid software development.
2 stars 1 forks source link

Add Doxygen support for deleted methods to C++ plugin #5

Closed brobeson closed 9 years ago

brobeson commented 9 years ago

C++11 allows the developer to tell the compiler to not implement a default method, such as a constructor or assignment operator. In cpp.vim, add support to the Doxygen function to generate an appropriate comment.

class Point
{
    /** \cond */
    Point() = delete;
    /** \endcond */
}