windows-nt/Source/XPSP1/NT/net/tapi/skywalker/parser/sdpatt.cpp

37 lines
479 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*
Copyright (c) 1997-1999 Microsoft Corporation
Module Name:
sdpatt.cpp
Abstract:
Author:
*/
#include "sdppch.h"
#include "sdpatt.h"
#include "sdpbstrl.h"
SDP_VALUE *
SDP_ATTRIBUTE_LIST::CreateElement(
)
{
SDP_CHAR_STRING_LINE *SdpCharStringLine;
try
{
SdpCharStringLine = new SDP_CHAR_STRING_LINE(SDP_INVALID_ATTRIBUTE, m_TypeString);
}
catch(...)
{
SdpCharStringLine = NULL;
}
return SdpCharStringLine;
}