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.
38 lines
943 B
38 lines
943 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: flddeflist.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
//
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#pragma warning(disable: 4275) // non dll-interface class 'foo' used
|
|
// as base for dll-interface class 'bar'
|
|
|
|
class CColumnDefinition;
|
|
|
|
//------------------------------------------------------------------------------
|
|
class LTAPIENTRY CColDefList : public CTypedPtrList<CPtrList, CColumnDefinition *>
|
|
{
|
|
// Construction
|
|
public:
|
|
CColDefList();
|
|
CColDefList(const CColDefList &);
|
|
|
|
~CColDefList();
|
|
|
|
// Operations
|
|
public:
|
|
BOOL FindColumnDefinition(long nSearchID, const CColumnDefinition * & pFoundColDef) const;
|
|
|
|
// Debugging
|
|
#ifdef _DEBUG
|
|
void AssertValid() const;
|
|
#endif
|
|
};
|
|
|
|
#pragma warning(default : 4275)
|
|
|
|
|