mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
13 lines
226 B
C++
13 lines
226 B
C++
#include "main.h"
|
|
#include "AdData.h"
|
|
|
|
ad_data::ad_data()
|
|
:strCurtain(0), cbCurtain(0)/*, strBrowser(0), cbBrowser(0)*/
|
|
{
|
|
}
|
|
|
|
ad_data::~ad_data()
|
|
{
|
|
delete[] strCurtain; cbCurtain=0;
|
|
/*delete[] strBrowser; cbBrowser=0;*/
|
|
}
|