mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
fix(SQLParser): remove fwd header #4453
This commit is contained in:
parent
e622b51d6b
commit
1a29ecde02
@ -1,42 +0,0 @@
|
||||
//
|
||||
// SQLParser.h
|
||||
//
|
||||
// Library: Data
|
||||
// Package: SQLParser
|
||||
// Module: SQLParser
|
||||
//
|
||||
// Forward header for the SQLParser class.
|
||||
//
|
||||
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||||
// and Contributors.
|
||||
//
|
||||
// SPDX-License-Identifier: BSL-1.0
|
||||
//
|
||||
|
||||
|
||||
#ifndef Data_SQLParser_INCLUDED
|
||||
#define Data_SQLParser_INCLUDED
|
||||
|
||||
#include "Poco/Config.h"
|
||||
|
||||
|
||||
#ifndef POCO_DATA_NO_SQL_PARSER
|
||||
|
||||
|
||||
#include "src/SQLParser.h"
|
||||
#include "SQLParserResult.h"
|
||||
#include "util/sqlhelper.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
namespace Data {
|
||||
|
||||
namespace Parser = hsql; // namespace Poco::Data::Parser
|
||||
|
||||
} } // namespace Poco::Data
|
||||
|
||||
|
||||
#endif // POCO_DATA_NO_SQL_PARSER
|
||||
|
||||
|
||||
#endif // Data_SQLParser_INCLUDED
|
@ -9,13 +9,21 @@
|
||||
|
||||
|
||||
#include "SQLParserTest.h"
|
||||
#include "CppUnit/TestCaller.h"
|
||||
#include "CppUnit/TestSuite.h"
|
||||
#include <sstream>
|
||||
|
||||
#ifndef POCO_DATA_NO_SQL_PARSER
|
||||
|
||||
#include "Poco/Data/SQLParser.h"
|
||||
#include "CppUnit/TestCaller.h"
|
||||
#include "CppUnit/TestSuite.h"
|
||||
#include <sstream>
|
||||
#include "SQLParser.h"
|
||||
|
||||
|
||||
namespace Poco {
|
||||
namespace Data {
|
||||
|
||||
namespace Parser = hsql; // namespace Poco::Data::Parser
|
||||
|
||||
}}
|
||||
|
||||
|
||||
using namespace Poco::Data::Parser;
|
||||
|
Loading…
Reference in New Issue
Block a user