Dbitflag.h 864 B

1234567891011121314151617181920212223
  1. //******************************************************************************************
  2. // dbitflag.h - This file contains the definitions for the bitflag class
  3. //
  4. //---------------------------------------------------------------------------//
  5. // Copyright (C) Microsoft Corporation. All rights reserved. //
  6. //===========================================================================//
  7. #ifndef DBITFLAG_H
  8. #define DBITFLAG_H
  9. //----------------------------------------------------------------------------------
  10. // Include Files
  11. //----------------------------------------------------------------------------------
  12. // Class Definitions
  13. class BitFlag;
  14. typedef BitFlag *BitFlagPtr;
  15. class ByteFlag;
  16. typedef ByteFlag *ByteFlagPtr;
  17. //----------------------------------------------------------------------------------
  18. #endif