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
36 lines
724 B
// AdDesc.cpp: implementation of the CAdDescriptor class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "AdRot.h"
|
|
#include "AdDesc.h"
|
|
|
|
#ifdef DBG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[]=__FILE__;
|
|
#define new DEBUG_NEW
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
CAdDescriptor::CAdDescriptor(
|
|
ULONG lWeight,
|
|
String strLink,
|
|
String strGif,
|
|
String strAlt )
|
|
: m_lWeight( lWeight ),
|
|
m_strLink( strLink ),
|
|
m_strGif( strGif ),
|
|
m_strAlt( strAlt )
|
|
{
|
|
|
|
}
|
|
|
|
CAdDescriptor::~CAdDescriptor()
|
|
{
|
|
|
|
}
|
|
|