/*  Copyright (c) MediaArea.net SARL. All Rights Reserved.
 *
 *  Use of this source code is governed by a zlib-style license that can
 *  be found in the License.txt file in the root of the source tree.
 */
 
//---------------------------------------------------------------------------
#include "ZenLib/PreComp.h"
#ifdef __BORLANDC__
    #pragma hdrstop
#endif
//---------------------------------------------------------------------------
 
//---------------------------------------------------------------------------
#include "ZenLib/Conf_Internal.h"
//---------------------------------------------------------------------------
 
//---------------------------------------------------------------------------
#include "ZenLib/Format/Html/Html_Handler.h"
using namespace std;
//---------------------------------------------------------------------------
 
namespace ZenLib
{
 
namespace Format
{
 
namespace Html
{
 
//***************************************************************************
// Constructor/Destructor
//***************************************************************************
 
//---------------------------------------------------------------------------
Handler::Handler()
{
}
 
//***************************************************************************
// Helpers
//***************************************************************************
 
void Handler::CleanUp()
{
}
 
} //Namespace
 
} //Namespace
 
} //Namespace

V832 It's better to use '= default;' syntax instead of empty constructor body.