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

#include <time.h>

/*
CLASS 
MissionClock

DESCRIPTION
Keep track of mission time

AUTHOR
Tom O'Reilly
*/
class MissionClock {

public:

  MissionClock();
  ~MissionClock();

  void reset();
  double seconds();

protected:

  double _startTime;
};


#endif

