//****************************************************************************************** // dbitflag.h - This file contains the definitions for the bitflag class // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DBITFLAG_H #define DBITFLAG_H //---------------------------------------------------------------------------------- // Include Files //---------------------------------------------------------------------------------- // Class Definitions class BitFlag; typedef BitFlag *BitFlagPtr; class ByteFlag; typedef ByteFlag *ByteFlagPtr; //---------------------------------------------------------------------------------- #endif