/src/Fast-DDS/src/cpp/rtps/writer/RTPSWriter.cpp
Line | Count | Source |
1 | | // Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima). |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); |
4 | | // you may not use this file except in compliance with the License. |
5 | | // You may obtain a copy of the License at |
6 | | // |
7 | | // http://www.apache.org/licenses/LICENSE-2.0 |
8 | | // |
9 | | // Unless required by applicable law or agreed to in writing, software |
10 | | // distributed under the License is distributed on an "AS IS" BASIS, |
11 | | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 | | // See the License for the specific language governing permissions and |
13 | | // limitations under the License. |
14 | | |
15 | | /* |
16 | | * @file RTPSWriter.cpp |
17 | | * |
18 | | */ |
19 | | |
20 | | #include <fastdds/rtps/writer/RTPSWriter.hpp> |
21 | | |
22 | | #include <fastdds/rtps/Endpoint.hpp> |
23 | | #include <fastdds/rtps/attributes/WriterAttributes.hpp> |
24 | | #include <fastdds/rtps/common/Guid.hpp> |
25 | | |
26 | | #include <rtps/participant/RTPSParticipantImpl.hpp> |
27 | | |
28 | | namespace eprosima { |
29 | | namespace fastdds { |
30 | | namespace rtps { |
31 | | |
32 | | RTPSWriter::RTPSWriter( |
33 | | RTPSParticipantImpl* impl, |
34 | | const GUID_t& guid, |
35 | | const WriterAttributes& att) |
36 | 0 | : Endpoint(impl, guid, att.endpoint) |
37 | 0 | { |
38 | 0 | } |
39 | | |
40 | | RTPSWriter::~RTPSWriter() |
41 | 0 | { |
42 | 0 | } |
43 | | |
44 | | } // namespace rtps |
45 | | } // namespace fastdds |
46 | | } // namespace eprosima |