inlib  1.2.0
Public Member Functions | Protected Member Functions | Protected Attributes
inlib::net::ftp::xxx Class Reference
Inheritance diagram for inlib::net::ftp::xxx:
Inheritance graph
[legend]
Collaboration diagram for inlib::net::ftp::xxx:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual bool fetch_cbk (inlib::uint64 a_length)
 xxx (std::ostream &a_out, bool a_verbose, ftp &a_ftp)
virtual ~xxx ()

Protected Member Functions

 xxx (const xxx &a_from)
xxxoperator= (const xxx &a_from)

Protected Attributes

ftpm_ftp

Detailed Description

Definition at line 68 of file ftp.


Constructor & Destructor Documentation

inlib::net::ftp::xxx::xxx ( std::ostream &  a_out,
bool  a_verbose,
ftp a_ftp 
) [inline]

Definition at line 74 of file ftp.

    : inlib::net::inet_socket(a_out,a_verbose)
    ,m_ftp(a_ftp)
    {}
virtual inlib::net::ftp::xxx::~xxx ( ) [inline, virtual]

Definition at line 78 of file ftp.

{}
inlib::net::ftp::xxx::xxx ( const xxx a_from) [inline, protected]

Definition at line 80 of file ftp.

    : inlib::net::inet_socket(a_from)
    ,m_ftp(a_from.m_ftp)
    {}

Member Function Documentation

virtual bool inlib::net::ftp::xxx::fetch_cbk ( inlib::uint64  a_length) [inline, virtual]

Reimplemented from inlib::net::base_socket.

Definition at line 70 of file ftp.

                                                 {
      return m_ftp.fetch_cbk(a_length);
    }
xxx& inlib::net::ftp::xxx::operator= ( const xxx a_from) [inline, protected]

Definition at line 84 of file ftp.

                                     {
      inlib::net::inet_socket::operator=(a_from);
      return *this;
    }

Member Data Documentation

Definition at line 89 of file ftp.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines