mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 11:06:50 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
35 lines
429 B
C++
35 lines
429 B
C++
//
|
|
// Connector.cpp
|
|
//
|
|
// $Id: //poco/Main/Data/src/Connector.cpp#2 $
|
|
//
|
|
// 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
|