59 lines
1.1 KiB
C++
59 lines
1.1 KiB
C++
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: resid.inl
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// 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);
|
|
}
|
|
|