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.

37 lines
1.0 KiB

  1. /*---------------------------------------------------------------------------
  2. File: TAttrNode.h
  3. Comments: interface for the TAttrNode class.
  4. (c) Copyright 1999, Mission Critical Software, Inc., All Rights Reserved
  5. Proprietary and confidential to Mission Critical Software, Inc.
  6. REVISION LOG ENTRY
  7. Revision By: Sham Chauthani
  8. Revised on 07/02/99 12:40:00
  9. ---------------------------------------------------------------------------
  10. */
  11. #if !defined(AFX_TATTRNODE_H__BE06D000_268B_11D3_8C89_0090270D48D1__INCLUDED_)
  12. #define AFX_TATTRNODE_H__BE06D000_268B_11D3_8C89_0090270D48D1__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. #include "TNode.hpp"
  17. class TAttrNode : public TNode
  18. {
  19. public:
  20. HRESULT Add( long nOrigCol, long nCol, _variant_t val[]);
  21. TAttrNode(long nCnt, _variant_t val[]);
  22. virtual ~TAttrNode();
  23. _variant_t m_Val;
  24. private:
  25. long * m_nElts;
  26. };
  27. #endif // !defined(AFX_TATTRNODE_H__BE06D000_268B_11D3_8C89_0090270D48D1__INCLUDED_)