mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 09:57:14 +01:00
27 lines
459 B
C++
27 lines
459 B
C++
//
|
|
// IDTraits.cpp
|
|
//
|
|
// Library: ActiveRecord
|
|
// Package: ActiveRecord
|
|
// Module: IDTraits
|
|
//
|
|
// Copyright (c) 2020, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/ActiveRecord/IDTraits.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace ActiveRecord {
|
|
|
|
|
|
const std::string IDTraits<std::string>::INVALID_ID;
|
|
const Poco::UUID IDTraits<Poco::UUID>::INVALID_ID;
|
|
|
|
|
|
} } // namespace Poco::ActiveRecord
|