mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
30 lines
408 B
C++
30 lines
408 B
C++
//
|
|
// DocumentEvent.cpp
|
|
//
|
|
// $Id: //poco/1.4/XML/src/DocumentEvent.cpp#1 $
|
|
//
|
|
// Library: XML
|
|
// Package: DOM
|
|
// Module: DOM
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/DOM/DocumentEvent.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace XML {
|
|
|
|
|
|
DocumentEvent::~DocumentEvent()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::XML
|