//****************************************************************************************** // dgvehicl.h - This file contains the Ground Vehicle Class header definitions // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DGVEHICL_H #define DGVEHICL_H //------------------------------------------------------------------------------ // class Definitions class GroundVehicleType; typedef GroundVehicleType* GroundVehicleTypePtr; class GroundVehicle; typedef GroundVehicle* GroundVehiclePtr; //------------------------------------------------------------------------------ #endif