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.
64 lines
1.0 KiB
64 lines
1.0 KiB
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
RESID.INL
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
//
|
|
// Inline funxtions for the Resource ID. This file should ONLY be included
|
|
// by resid.h.
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: resid.inl
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// All methods directed to base class
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
inline
|
|
CLocResId::CLocResId()
|
|
{}
|
|
|
|
|
|
|
|
inline
|
|
const CLocResId &
|
|
CLocResId::operator=(
|
|
const CLocResId & locId)
|
|
{
|
|
CLocId::operator=(locId);
|
|
return *this;
|
|
}
|
|
|
|
|
|
inline
|
|
int
|
|
CLocResId::operator==(
|
|
const CLocResId & locId)
|
|
const
|
|
{
|
|
return CLocId::operator==(locId);
|
|
}
|
|
|
|
|
|
inline
|
|
int
|
|
CLocResId::operator!=(
|
|
const CLocResId & locId)
|
|
const
|
|
{
|
|
return CLocId::operator!=(locId);
|
|
}
|
|
|