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.

36 lines
724 B

  1. // AdDesc.cpp: implementation of the CAdDescriptor class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "AdRot.h"
  6. #include "AdDesc.h"
  7. #ifdef DBG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. CAdDescriptor::CAdDescriptor(
  16. ULONG lWeight,
  17. String strLink,
  18. String strGif,
  19. String strAlt )
  20. : m_lWeight( lWeight ),
  21. m_strLink( strLink ),
  22. m_strGif( strGif ),
  23. m_strAlt( strAlt )
  24. {
  25. }
  26. CAdDescriptor::~CAdDescriptor()
  27. {
  28. }