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.

55 lines
872 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. LOCCHILD.H
  5. History:
  6. --*/
  7. #if !defined (PARSUTIL_LOCCHILD_H)
  8. #define PARSUTIL_LOCCHILD_H
  9. #pragma warning(disable : 4275)
  10. class CPULocParser;
  11. ////////////////////////////////////////////////////////////////////////////////
  12. class LTAPIENTRY CPULocChild : public CLUnknown, public CLObject
  13. {
  14. // Construction
  15. public:
  16. CPULocChild(CPULocParser * pParent);
  17. virtual ~CPULocChild();
  18. // Data
  19. private:
  20. CPULocParser * m_pParent;
  21. // Attributes
  22. public:
  23. CPULocParser * GetParent() const;
  24. // COM Interfaces
  25. public:
  26. // Overrides
  27. public:
  28. // Implementation
  29. protected:
  30. // CLObject
  31. virtual void AssertValid(void) const;
  32. };
  33. ////////////////////////////////////////////////////////////////////////////////
  34. #pragma warning(default : 4275)
  35. #endif