OpenDDS  Snapshot(2023/04/28-20:55)
DirentWrapper.h
Go to the documentation of this file.
1 #ifndef OPENDDS_DCPS_DIRENTWRAPPER_H
2 #define OPENDDS_DCPS_DIRENTWRAPPER_H
3 
4 #include "Definitions.h"
5 
6 #if OPENDDS_GCC_HAS_DIAG_PUSHPOP
7 # pragma GCC diagnostic push
8 # if defined(__has_warning)
9 # if __has_warning("-Wdeprecated-declarations")
10 # pragma GCC diagnostic ignored "-Wdeprecated-declarations"
11 # endif
12 # elif __GNUC__ >= 5
13 # pragma GCC diagnostic ignored "-Wdeprecated-declarations"
14 # endif
15 #endif
16 #include <ace/Dirent.h>
17 #if OPENDDS_GCC_HAS_DIAG_PUSHPOP
18 # pragma GCC diagnostic pop
19 #endif
20 
21 #endif