see these structure:
struct FunctionList
{
string Name;
string Return;
vector<string> ParametersType;
};
vector <FunctionList> FuncList;
when i do:
FuncList[FunctionListIndex].
i only get these on list:
_M_emplace_aux()
why i don't get the structure list?
(i'm sorry, but i don't know the name of that menu list)
Are you talking about the code completion popup list?
If yes, then probably our parser has failed to parse your code...
after more and more search, i found the 'solution'.
on my header file i added the:
namespace std;
but now on cpp file...
on header file, maybe the list is showed.... but not on cpp... unless we add the same line.
after added the same line, the list is showed.. strange why these happens...
thanks for all
oBFusCATed yes the code completion popup list(but when we add the dot)
i did a mistake... it's:
using namespace std;