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.

53 lines
1.0 KiB

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: LocChild.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Written by: jstall
  8. //
  9. //-----------------------------------------------------------------------------
  10. #if !defined (PARSUTIL_LOCCHILD_H)
  11. #define PARSUTIL_LOCCHILD_H
  12. #pragma warning(disable : 4275)
  13. class CPULocParser;
  14. ////////////////////////////////////////////////////////////////////////////////
  15. class LTAPIENTRY CPULocChild : public CLUnknown, public CLObject
  16. {
  17. // Construction
  18. public:
  19. CPULocChild(CPULocParser * pParent);
  20. virtual ~CPULocChild();
  21. // Data
  22. private:
  23. CPULocParser * m_pParent;
  24. // Attributes
  25. public:
  26. CPULocParser * GetParent() const;
  27. // COM Interfaces
  28. public:
  29. // Overrides
  30. public:
  31. // Implementation
  32. protected:
  33. // CLObject
  34. virtual void AssertValid(void) const;
  35. };
  36. ////////////////////////////////////////////////////////////////////////////////
  37. #pragma warning(default : 4275)
  38. #endif