falsecondition.h 566 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: falsecondition.h
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Header file for the training library "falsecondition" interface.
  10. **
  11. ** History:
  12. */
  13. #ifndef _FALSE_CONDITION_H_
  14. #define _FALSE_CONDITION_H_
  15. #ifndef _NOT_CONDITION_H_
  16. #include "NotCondition.h"
  17. #endif //_NOT_CONDITION_H_
  18. #ifndef _TRUE_CONDITION_H_
  19. #include "TrueCondition.h"
  20. #endif //_TRUE_CONDITION_H_
  21. namespace Training
  22. {
  23. #define FalseCondition NotCondition (new TrueCondition)
  24. }
  25. #endif //_FALSE_CONDITION_H_