mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-21 14:44:36 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
48 lines
810 B
C++
48 lines
810 B
C++
//
|
|
// NamedEvent.cpp
|
|
//
|
|
// $Id: //poco/1.4/Foundation/src/NamedEvent.cpp#2 $
|
|
//
|
|
// Library: Foundation
|
|
// Package: Processes
|
|
// Module: NamedEvent
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/NamedEvent.h"
|
|
|
|
|
|
#if defined(POCO_OS_FAMILY_WINDOWS) && defined(POCO_WIN32_UTF8)
|
|
#include "NamedEvent_WIN32U.cpp"
|
|
#elif defined(POCO_OS_FAMILY_WINDOWS)
|
|
#include "NamedEvent_WIN32.cpp"
|
|
#elif defined(POCO_ANDROID)
|
|
#include "NamedEvent_Android.cpp"
|
|
#elif defined(POCO_OS_FAMILY_UNIX)
|
|
#include "NamedEvent_UNIX.cpp"
|
|
#else
|
|
#include "NamedEvent_VMS.cpp"
|
|
#endif
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
NamedEvent::NamedEvent(const std::string& name):
|
|
NamedEventImpl(name)
|
|
{
|
|
}
|
|
|
|
|
|
NamedEvent::~NamedEvent()
|
|
{
|
|
}
|
|
|
|
|
|
} // namespace Poco
|