brobeson / Tools

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

Add a function to add a new C++ class skeleton #10

Closed brobeson closed 9 years ago

brobeson commented 9 years ago

Example class skeleton

/** doxygen skeleton */
class FooBar
{
    public:
        /** @cond */
        FooBar() = delete;
        FooBar(const FooBar& source) = delete;
        FooBar& operator=(const FooBar& source) = delete;
        /** @endcond */

        /** doxygen skeleton */
        ~FooBar() = default;

    private:
};