Forum Discussion
Altera_Forum
Honored Contributor
19 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