www.pudn.com > FTPServerClient.zip > interface.h


#ifndef INTERFACE_H_ 
#define INTERFACE_H_ 
 
#include  
#include "client.h" 
 
class Interface { 
public: 
	Interface(); 
 
	void start(); 
 
private: 
	bool logon(const std::string& url); 
 
	Client* client; 
	Directory dir; 
	bool passive; 
}; 
 
#endif /*INTERFACE_H_*/