Line data Source code
1 : /********************************************************************************
2 : * Copyright (c) 2025 Accenture
3 : *
4 : * This program and the accompanying materials are made available under the
5 : * terms of the Apache License Version 2.0 which is available at
6 : * https://www.apache.org/licenses/LICENSE-2.0
7 : *
8 : * SPDX-License-Identifier: Apache-2.0
9 : ********************************************************************************/
10 :
11 : #include "tcp/socket/AbstractSocket.h"
12 :
13 : namespace tcp
14 : {
15 99 : AbstractSocket::AbstractSocket() : _dataListener(nullptr), _sendNotificationListener(nullptr) {}
16 :
17 : } // namespace tcp
|