Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

58 lines
1.1 KiB

//-----------------------------------------------------------------------------
//
// 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);
}