Ignore:
Timestamp:
Feb 24, 2002, 3:47:28 AM (24 years ago)
Author:
bird
Message:

New kFile* classes; now in sync with os2tools.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/common/kLIFO.cpp

    r824 r8003  
    1 /* $Id: kLIFO.cpp,v 1.1 1999-09-05 02:09:17 bird Exp $ */
     1/* $Id: kLIFO.cpp,v 1.2 2002-02-24 02:47:27 bird Exp $ */
    22/*
    33 * Simple LIFO template class implementation.
     
    160160 */
    161161template <class kEntry>
    162 BOOL kLIFO<kEntry>::isEmpty(void) const
     162KBOOL kLIFO<kEntry>::isEmpty(void) const
    163163{
    164164    return pTop == NULL;
     
    190190 */
    191191template <class kEntry>
    192 BOOL kLIFO<kEntry>::exists(const kEntry *pEntry) const
     192KBOOL kLIFO<kEntry>::exists(const kEntry *pEntry) const
    193193{
    194194    kEntry *pCurrentEntry = pTop;
Note: See TracChangeset for help on using the changeset viewer.