Fast DDS  Version 3.6.1.0
Fast DDS
ReaderDiscoveryStatus.hpp
1 // Copyright 2018 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 
19 #ifndef FASTDDS_RTPS_READER__READERDISCOVERYSTATUS_HPP
20 #define FASTDDS_RTPS_READER__READERDISCOVERYSTATUS_HPP
21 
22 #include <fastdds/fastdds_dll.hpp>
23 
24 namespace eprosima {
25 namespace fastdds {
26 namespace rtps {
27 
29 // *INDENT-OFF* : Does not understand the #if correctly and ends up removing the ;
30 // at the end of the enum, which does not build.
31 #if defined(_WIN32)
32 enum class FASTDDS_EXPORTED_API ReaderDiscoveryStatus
33 #else
35 #endif // if defined(_WIN32)
36 {
41 };
42 // *INDENT-ON*
43 
44 } // namespace rtps
45 } // namespace fastdds
46 } // namespace eprosima
47 
48 #endif // FASTDDS_RTPS_READER__READERDISCOVERYSTATUS_HPP
ReaderDiscoveryStatus
Enum DISCOVERY_STATUS, four different status for discovered readers.
Definition: ReaderDiscoveryStatus.hpp:36