//=========================================================================
// Summary  : Egetech FSDW Logger
// Filename : EdgtechFSDWLog.h
// Author   : Reed Christenson reed@bluefinrobotics.com
// Project  : Reson 6046 Driver
// Revision : 0.0
// Created  : 2002.03.21
// Modified : 2002.03.21
//=========================================================================
// Description : Reson 6046 Logger
//=========================================================================

#ifndef _EDGETECHFSDWLOG_H
#define _EDGETECHFSDWLOG_H

#include "DataLogWriter.h"

class EdgtechFSDWDriver;

#define EdgetechFSDWLogName "edgetechFSDW"


class EdgetechFSDWLog : public DataLogWriter
{
 public:
    debug_t debug;

    EdgetechFSDWLog( EdgetechFSDWOutput *, Boolean autoLocateFile = True );
    EdgetechFSDWLog( const char *name, EdgetechFSDWOutput *,
		  Boolean autoLocateFile = True );
    ~EdgetechFSDWLog();

    void constructorCommon( EdgetechFSDWOutput * );

    virtual void setFields();

    EdgetechFSDWOutput *_output;

    // Log variable names go here.
};

#endif
