Preventing compile errors by removing defaults in FTP constructor.

This commit is contained in:
Thulinma 2012-09-07 14:18:25 +02:00
parent 932c0e5b7b
commit c3abf0682d

View file

@ -55,7 +55,7 @@ namespace FTP {
class User {
public:
User( Socket::Connection NewConnection = Socket::Connection(), std::map<std::string,std::string> Credentials = std::map<std::string,std::string>() );
User( Socket::Connection NewConnection, std::map<std::string,std::string> Credentials);
~User( );
int ParseCommand( std::string Command );
bool LoggedIn( );