123456789101112131415161718192021222324 |
- //******************************************************************************************
- //
- // delemntl.h - This file contains the Elemental Class header definitions
- //
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #ifndef DELEMNTL_H
- #define DELEMNTL_H
- //------------------------------------------------------------------------------
- // class Definitions
- class ElementalType;
- typedef ElementalType* ElementalTypePtr;
- class Elemental;
- typedef Elemental* ElementalPtr;
- //------------------------------------------------------------------------------
- #endif
|