mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 04:17:55 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
30 lines
488 B
C++
30 lines
488 B
C++
//
|
|
// SocketsTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/Net/testsuite/src/SocketsTestSuite.h#1 $
|
|
//
|
|
// Definition of the SocketsTestSuite class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef SocketsTestSuite_INCLUDED
|
|
#define SocketsTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class SocketsTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // SocketsTestSuite_INCLUDED
|