SuspendedSoundFinishedCondition.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: suspendedsoundfinishedcondition.h
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Header file for the training library "suspendedsoundfinishedcondition" interface.
  10. **
  11. ** History:
  12. */
  13. #ifndef _SUSPENDED_SOUND_FINISHED_CONDITION_H_
  14. #define _SUSPENDED_SOUND_FINISHED_CONDITION_H_
  15. #ifndef _SOUND_FINISHED_CONDITION_H_
  16. #include "SoundFinishedCondition.h"
  17. #endif //_SOUND_FINISHED_CONDITION_H_
  18. namespace Training
  19. {
  20. //------------------------------------------------------------------------------
  21. // class definitions
  22. //------------------------------------------------------------------------------
  23. class SuspendedSoundFinishedCondition : public SoundFinishedCondition
  24. {
  25. public:
  26. /* void */ SuspendedSoundFinishedCondition (PlaySoundAction* pPlaySoundAction, bool bDeleteWhenDone = true);
  27. virtual /* void */ ~SuspendedSoundFinishedCondition (void);
  28. protected:
  29. bool m_bDeleteWhenDone;
  30. };
  31. //------------------------------------------------------------------------------
  32. }
  33. #endif //_SUSPENDED_SOUND_FINISHED_CONDITION_H_