Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
553 B

  1. /*****************************************************************************\
  2. * Class CValid - Header file
  3. *
  4. * Copyright (C) 1998 Microsoft Corporation
  5. *
  6. * Author:
  7. * Weihai Chen (weihaic) May 24, 1999
  8. *
  9. \*****************************************************************************/
  10. #ifndef _VALID_H
  11. #define _VALID_H
  12. class TValid
  13. {
  14. public:
  15. TValid (BOOL bValid = TRUE):m_bValid(bValid) {};
  16. virtual ~TValid (void) {};
  17. const BOOL bValid () const {return m_bValid;};
  18. protected:
  19. BOOL m_bValid;
  20. };
  21. #endif