mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 11:06:57 +01:00
33 lines
379 B
C++
33 lines
379 B
C++
//
|
|
// Connector.cpp
|
|
//
|
|
// Library: Data
|
|
// Package: DataCore
|
|
// Module: Connector
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Data/Connector.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
|
|
|
|
Connector::Connector()
|
|
{
|
|
}
|
|
|
|
|
|
Connector::~Connector()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Data
|