//
//  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:   C7kFragmentedRecord.h
//
//  Project:    6046.
//
//  Author(s):  W. Arcus
//
//  Purpose:    Helper class to compose/decompose 7k data records from/to fragments.
//
//  Notes:      
//
//

#if !defined(AFX_7KFRAGMENTEDRECORD_H__99E299EB_10BE_42C0_934D_D26EA39C5837__INCLUDED_)
#define AFX_7KFRAGMENTEDRECORD_H__99E299EB_10BE_42C0_934D_D26EA39C5837__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

//#include "7kProtocol.h"
//#include "SystemTime.h"
//
//#include <vector>

class EXPORT_DLL C7kFragmentedRecord
{
public:

                C7kFragmentedRecord     (   void );
    virtual    ~C7kFragmentedRecord     (   void );

private:

    //typedef std::vector<C7kProtocol *>  FragmentQueue_t;
    //typedef FragmentQueue_t::iterator   FragmentQueueIterator_t;
    //
    //FragmentQueue_t                     m_DecomposedRecords;

    //const unsigned long m_ulMaxFragmentSizeInBytes;

    //bool        Compose();
    //bool        Decompose();

};

#endif // !defined(AFX_7KFRAGMENTEDRECORD_H__99E299EB_10BE_42C0_934D_D26EA39C5837__INCLUDED_)
