/*! A test class */classTest{public:/** An enum type. * The documentation block cannot be put after the enum! */enumEnumType{intEVal1,/**< enum value 1 */intEVal2/**< enum value 2 */};voidmember();//!< a member function.protected:intvalue;/*!< an integer value */};