TypeIDTarget.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: TypeIDTarget.h
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Header file for the training library "TypeIDTarget" interface.
  10. **
  11. ** History:
  12. */
  13. #ifndef _TYPE_ID_TARGET_H_
  14. #define _TYPE_ID_TARGET_H_
  15. #ifndef _ABSTRACT_TARGET_H_
  16. #include "AbstractTarget.h"
  17. #endif //_ABSTRACT_TARGET_H_
  18. namespace Training
  19. {
  20. //------------------------------------------------------------------------------
  21. // class definitions
  22. //------------------------------------------------------------------------------
  23. class TypeIDTarget : public AbstractTarget
  24. {
  25. public:
  26. /* void */ TypeIDTarget (ObjectType targetType, ObjectID targetID);
  27. virtual /* void */ ~TypeIDTarget (void);
  28. virtual /* ImodelIGC* */ operator ImodelIGC* (void);
  29. protected:
  30. ObjectType m_targetType;
  31. ObjectID m_targetID;
  32. };
  33. //------------------------------------------------------------------------------
  34. }
  35. #endif //_TYPE_ID_TARGET_H_