#include "database.h"
void addL();
int main()
{
cout<<"Welcome to SimpleRoutestore!"<<endl;
addL();
return 0;
}
void addL();
{
string option;
string locationName;
cout<<"entercommand:"<<endl;
cin>>option>>locationName;
if(option=="addlocation"){
addlocation(locationName);
}
}
error C2447: '{' : missing function header (old-style formal list?)

New Topic/Question
Reply




MultiQuote




|