Leaked source code of windows server 2003
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

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: flddeflist.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #pragma warning(disable: 4275) // non dll-interface class 'foo' used
  11. // as base for dll-interface class 'bar'
  12. class CColumnDefinition;
  13. //------------------------------------------------------------------------------
  14. class LTAPIENTRY CColDefList : public CTypedPtrList<CPtrList, CColumnDefinition *>
  15. {
  16. // Construction
  17. public:
  18. CColDefList();
  19. CColDefList(const CColDefList &);
  20. ~CColDefList();
  21. // Operations
  22. public:
  23. BOOL FindColumnDefinition(long nSearchID, const CColumnDefinition * & pFoundColDef) const;
  24. // Debugging
  25. #ifdef _DEBUG
  26. void AssertValid() const;
  27. #endif
  28. };
  29. #pragma warning(default : 4275)