Blame examples/afterdoc.h

Packit Service 50c9f2
/*! A test class */
Packit Service 50c9f2
Packit Service 50c9f2
class Afterdoc_Test
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
    /** An enum type. 
Packit Service 50c9f2
     *  The documentation block cannot be put after the enum! 
Packit Service 50c9f2
     */
Packit Service 50c9f2
    enum EnumType
Packit Service 50c9f2
    {
Packit Service 50c9f2
      int EVal1,     /**< enum value 1 */
Packit Service 50c9f2
      int EVal2      /**< enum value 2 */
Packit Service 50c9f2
    };
Packit Service 50c9f2
    void member();   //!< a member function.
Packit Service 50c9f2
    
Packit Service 50c9f2
  protected:
Packit Service 50c9f2
    int value;       /*!< an integer value */
Packit Service 50c9f2
};