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.
39 lines
971 B
39 lines
971 B
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
_GLOBALID.H
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
#ifndef ESPUTIL__GLOBALID_H
|
|
#define ESPUTIL__GLOBALID_H
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// global id path object, represents a fully qualified path from the root of
|
|
// the project to a specified item
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#pragma warning(disable : 4275)
|
|
class LTAPIENTRY CGlobalIdPath : public CTypedPtrList < CPtrList, CGlobalId * >
|
|
{
|
|
public:
|
|
int NOTHROW operator==(const CGlobalIdPath &) const;
|
|
const CGlobalIdPath & operator = (const CGlobalIdPath& idPath);
|
|
~CGlobalIdPath();
|
|
|
|
void SetIdPath(const CLString &strFilePath,
|
|
const CLString &strResourcePath);
|
|
|
|
void GetStrPath(CLString &strFilePath, CLString &strResourcePath) const;
|
|
|
|
void NOTHROW DeleteContents();
|
|
};
|
|
#pragma warning(default : 4275)
|
|
|
|
#endif
|