Hey,

Im slightly confused with an error i have been getting, and have tried all sorts but to no avail, here is most of the error:

Code:
 Test2.cpp:15: error: no matching function for call to ‘MobileAccount::MobileAccount(MobileNumber, const char [6])’
MobileAccount.h:20: note: candidates are: MobileAccount::MobileAccount(MobileNumber&, const std::string&)
MobileAccount.h:13: note:                 MobileAccount::MobileAccount(const MobileAccount&)
This is line 15 of Test2.cpp:

Code:
 MobileAccount kevin(MobileNumber(),"Kevin");
and this is line 20 of MobileAccount.h:

Code:
 MobileAccount(MobileNumber & rnum, const string & rname);
Line 13 of MobileAccount.h

Code:
 class MobileAccount{
Any idea whats going on? Thanks in advance.