/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : PeriodicTestLog.h                                             */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#ifndef _PERIODICTESTLOG_H
#define _PERIODICTESTLOG_H

#include "DataLogWriter.h"
#include "IntegerData.h"

class PeriodicTestLog : public DataLogWriter {

public:

  PeriodicTestLog();
  ~PeriodicTestLog();

protected:
  virtual void setFields();
  IntegerData *dummy;
};

#endif
