Preventing compile errors by removing defaults in FTP constructor.
This commit is contained in:
parent
932c0e5b7b
commit
c3abf0682d
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ namespace FTP {
|
||||||
|
|
||||||
class User {
|
class User {
|
||||||
public:
|
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( );
|
~User( );
|
||||||
int ParseCommand( std::string Command );
|
int ParseCommand( std::string Command );
|
||||||
bool LoggedIn( );
|
bool LoggedIn( );
|
||||||
|
|
Loading…
Add table
Reference in a new issue