mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-04 03:17:14 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
45 lines
678 B
C++
45 lines
678 B
C++
//
|
|
// NamedEvent_Android.cpp
|
|
//
|
|
// Library: Foundation
|
|
// Package: Processes
|
|
// Module: NamedEvent
|
|
//
|
|
// Copyright (c) 2004-2011, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/NamedEvent_Android.h"
|
|
#include "Poco/Exception.h"
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
NamedEventImpl::NamedEventImpl(const std::string&)
|
|
{
|
|
}
|
|
|
|
|
|
NamedEventImpl::~NamedEventImpl()
|
|
{
|
|
}
|
|
|
|
|
|
void NamedEventImpl::setImpl()
|
|
{
|
|
throw NotImplementedException("NamedEvent::set() not available on Android");
|
|
}
|
|
|
|
|
|
void NamedEventImpl::waitImpl()
|
|
{
|
|
throw NotImplementedException("NamedEvent::wait() not available on Android");
|
|
}
|
|
|
|
|
|
} // namespace Poco
|