I have this code, but when i type in one comand and then the next comand it does doe the comand i type in but the first comand i typed in.
* I think it is becuase i dont clean my vector string, if so how do i clean it. And if not, what is wrong.
Note this is only part of the code, i dont want to give away my entire project...
int main()
{
stringstream ss;
while(1)
{
cout<<"\n>: ";
getline(cin, input);
ss << input;
while(ss >> temp)
{
comand.push_back(temp);
}
if(comand[0] == "gencode" && comand[1] != "" && comand[2] != "" && comand[3] != "")
{
GenCode(comand[1], comand[2], comand[3]);
}
else if(comand[0] == "encrypt" && comand[1] != "" && comand[2] != "")
{
ifile = comand[1];
ofile = comand[2];
Encrypt();
}
else if(comand[0] == "decrypt" && comand[1] != "" && comand[2] != "")
{
ifile = comand[1];
ofile = comand[2];
Decrypt();
}
else if(comand[0] == "exit")
{
exit(1);
}
/*else
{
Help();
}*/
}
return 1;
}
If i type:
gencode hello world test
It genereates the code but then when i type:
encrypt C:\Users\Users\Desktop\INPUTFILE.txt C:\Users\User\Desktop\OUTPUTFILE.txt
Then i generates the code again, so the vectors dont clean up or is it another bug, if it is, please tell me how to fix it...
Oh and Thanks....