//=========================================================================
// Summary  : */
// Filename : VehicleConfiguration.h
// Author   : */
// Project  : */
// Revision : 1
// Created  : 2000/08/19
// Modified : 2000/08/19
//=========================================================================
// Description :
//=========================================================================
#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
