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

#include "Task.h"

/*
CLASS 
VehicleConfiguration

DESCRIPTION
Contains information on current vehicle hardware/software
configuration (e.g. devices and instruments, vehicle
hydrodynamic properties, etc)

AUTHOR
Tom O'Reilly
*/

class VehicleConfiguration : public Task {

public:
  VehicleConfiguration();
  ~VehicleConfiguration();

};


#endif
