35 lines
772 B
C++
35 lines
772 B
C++
/**********************************************************************
|
|
|
|
Filename : GFxVideoBase.cpp
|
|
Content :
|
|
Created : June 2008
|
|
Authors : Maxim Didenko
|
|
|
|
Notes :
|
|
|
|
Copyright : (c) 2005-2006 Scaleform Corp. All Rights Reserved.
|
|
|
|
Licensees may use this file in accordance with the valid Scaleform
|
|
Commercial License Agreement provided with the software.
|
|
|
|
This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
|
|
THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR ANY PURPOSE.
|
|
|
|
**********************************************************************/
|
|
|
|
#include "GFxVideoBase.h"
|
|
|
|
#ifndef GFC_NO_VIDEO
|
|
|
|
GFxVideoBase::GFxVideoBase()
|
|
: GFxState(State_Video)
|
|
{
|
|
}
|
|
|
|
GFxVideoBase::~GFxVideoBase()
|
|
{
|
|
}
|
|
|
|
#endif // GFC_NO_VIDEO
|
|
|