When I am writing a function of class A,the member listbox display nothing.(VS 2008)
For example:
Code in A.h:
#ifndef __A_H__
#define __A_H__
namespace tq
{
class A
{
public:
void PublicFunc();
protected:
void ProtectedFunc();
private:
void PrivateFunc();
}
}
#endif // __A_H__
Problem 1:
Code in A.cpp:
#include "A.h"
using namespace tq;
void A::PublicFunc()
{
this->
}
I expect after I write down "this->", the member listbox will display PublicFunc,ProtectedFunc And PrivateFunc.
Problem 2:
Code in A.cpp:
#include "A.h"
using namespace tq;
void A::PublicFunc()
{
Protected
}
I expect after I write down "Protected" or "Private", the listbox will dispaly "ProtectedFunc" or "PrivateFunc", just like when I write down "Public", it will display "PublicFunc".