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.
27 lines
553 B
27 lines
553 B
/*****************************************************************************\
|
|
* Class CValid - Header file
|
|
*
|
|
* Copyright (C) 1998 Microsoft Corporation
|
|
*
|
|
* Author:
|
|
* Weihai Chen (weihaic) May 24, 1999
|
|
*
|
|
\*****************************************************************************/
|
|
|
|
#ifndef _VALID_H
|
|
#define _VALID_H
|
|
|
|
class TValid
|
|
{
|
|
public:
|
|
TValid (BOOL bValid = TRUE):m_bValid(bValid) {};
|
|
|
|
virtual ~TValid (void) {};
|
|
|
|
const BOOL bValid () const {return m_bValid;};
|
|
|
|
protected:
|
|
BOOL m_bValid;
|
|
};
|
|
|
|
#endif
|