Forum Discussion
Altera_Forum
Honored Contributor
20 years agoInSight debugger instead of Eclipse debugger
Hi All, I would like to know if it is possible to use Insight Debugger Tool (which is also GDB based) , instead of eclipse plug-in provided in NIOS2 IDE ? Because I feel that Eclipse plug-in is ...
Altera_Forum
Honored Contributor
20 years agoHi Slacker,
I'm using C++ to develop my project. The problem is when I create a new class, for example: class BufferAllocation { public: alt_u16 *pOutputBuffer; public: BufferAllocation() {} ~BufferAllocation() {} alt_u16* GetBufferPointer(void) {} void ClearBuffer(void) {} }; But when I use this new class, NiosII IDE can't show me it's members automatically. For example, I create an object of BufferAllocation named pBuffer. when I write pBuffer-> no members showed. If in VC, you'll see a list of it members. What's the problem? David