2025-04-27 07:49:33 -04:00

59 lines
1.2 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);
}