//
//  Copyright © 2004, RESON Inc. All Rights Reserved.
//
//  No part of this file may be reproduced or transmitted in any form or by
//  any means, electronic or mechanical, including photocopy, recording, or
//  information storage or retrieval system, without permission in writing
//  from RESON Inc.
//
//  Filename:   
//
//  Project:    6046
//
//  Author(s):  W. Arcus
//
//  Purpose:    
//
//  Notes:      
//

#if !defined(AFX_7KSTREAMSOCKET_H__052973E2_0E96_4092_9875_78AF73098D3C__INCLUDED_)
#define AFX_7KSTREAMSOCKET_H__052973E2_0E96_4092_9875_78AF73098D3C__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "7kSocket.h"

class C7kStreamSocket : public virtual C7kSocket
{
public:

    ///////////////
    // Services.

                    C7kStreamSocket     (   void );
    virtual        ~C7kStreamSocket     (   void );

    virtual bool    Configure           (   const unsigned short   &runProtocolVersion );

    virtual bool    StartServer         (   void );
    virtual bool    StopServer          (   void );

    virtual bool    Send                (   void );
    virtual bool    Receive             (   void );

private:

    ///////////////
    // Services.

};

#endif // !defined(AFX_7KSTREAMSOCKET_H__052973E2_0E96_4092_9875_78AF73098D3C__INCLUDED_)
