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.

31 lines
810 B

  1. // AdDesc.h: interface for the CAdDescriptor class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ADDESC_H__78FFAFF3_E0E1_11D0_8A81_00C0F00910F9__INCLUDED_)
  5. #define AFX_ADDESC_H__78FFAFF3_E0E1_11D0_8A81_00C0F00910F9__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "RefCount.h"
  10. #include "RefPtr.h"
  11. class CAdDescriptor : public CRefCounter
  12. {
  13. public:
  14. CAdDescriptor( ULONG lWeight, String strLink, String strGif, String strAlt );
  15. const ULONG m_lWeight;
  16. const String m_strLink;
  17. const String m_strGif;
  18. const String m_strAlt;
  19. private:
  20. virtual ~CAdDescriptor();
  21. };
  22. typedef TRefPtr< CAdDescriptor > CAdDescPtr;
  23. #endif // !defined(AFX_ADDESC_H__78FFAFF3_E0E1_11D0_8A81_00C0F00910F9__INCLUDED_)