mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-08 03:57:21 +01:00
30 lines
675 B
C++
30 lines
675 B
C++
//
|
|
// DynamicAny.h
|
|
//
|
|
// Library: Foundation
|
|
// Package: Dynamic
|
|
// Module: Var
|
|
//
|
|
// Forward header for Var class to maintain backward compatibility.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Foundation_DynamicAny_INCLUDED
|
|
#define Foundation_DynamicAny_INCLUDED
|
|
|
|
#include "Poco/Dynamic/Var.h"
|
|
|
|
namespace {
|
|
POCO_DEPRECATED("Deprecated header: include Poco/Dynamic/Var.h instead")
|
|
constexpr static int dynamicany_hpp_is_deprecated {0xBAD};
|
|
constexpr static int please_dont_use_badheader_hpp = dynamicany_hpp_is_deprecated;
|
|
}
|
|
|
|
|
|
#endif // Foundation_DynamicAny_INCLUDED
|