// objective: test the \related, \relatedalso, \see, and \sa commands// check: class_test.xml// check: 046__related_8cpp.xml/** @file *//** A test class * @see Test::method() */classTest{public:/** A method */voidmethod();};/*! * A function. * \related Test * \sa another() */voidfunction();/*! * Another function * \relatedalso Test */voidanother();