Community
Participate
Working Groups
1. Create a new C++ Class. At the top of the class, add an in line comment (//) that starts with TODO. Save the file. Open the tasks view. 2. Expected result: There should be an entry that starts with TODO and contains the text of the comment in the "Tasks" view Test data: /* * MyClass.cpp * */ #include "MyClass.h" MyClass::MyClass() { // TODO Auto-generated constructor stub } MyClass::~MyClass() { // TODO Auto-generated destructor stub } /* * MyClass.h * */ #ifndef MYCLASS_H_ #define MYCLASS_H_ class MyClass { public: MyClass(); virtual ~MyClass(); }; #endif /* MYCLASS_H_ */
Task tags are not yet supported in RDT.
Assuming this will not be fixed.