mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
28 lines
362 B
C++
28 lines
362 B
C++
//
|
|
// EventListener.cpp
|
|
//
|
|
// Library: XML
|
|
// Package: DOM
|
|
// Module: DOMEvents
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/DOM/EventListener.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace XML {
|
|
|
|
|
|
EventListener::~EventListener()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::XML
|