21 lines
278 B
C++
21 lines
278 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#ifndef __ENET_FTP_H__
|
|
#define __ENET_FTP_H__
|
|
|
|
namespace enet {
|
|
class Ftp {
|
|
public:
|
|
Ftp() { };
|
|
virtual ~Ftp() { };
|
|
};
|
|
};
|
|
|
|
#endif
|