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
53 lines
1.0 KiB
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: LocChild.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// Written by: jstall
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#if !defined (PARSUTIL_LOCCHILD_H)
|
|
#define PARSUTIL_LOCCHILD_H
|
|
|
|
|
|
#pragma warning(disable : 4275)
|
|
|
|
|
|
class CPULocParser;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
class LTAPIENTRY CPULocChild : public CLUnknown, public CLObject
|
|
{
|
|
// Construction
|
|
public:
|
|
CPULocChild(CPULocParser * pParent);
|
|
virtual ~CPULocChild();
|
|
|
|
// Data
|
|
private:
|
|
CPULocParser * m_pParent;
|
|
|
|
// Attributes
|
|
public:
|
|
CPULocParser * GetParent() const;
|
|
|
|
// COM Interfaces
|
|
public:
|
|
|
|
// Overrides
|
|
public:
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// CLObject
|
|
|
|
virtual void AssertValid(void) const;
|
|
};
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma warning(default : 4275)
|
|
|
|
#endif
|