A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
deprecated.h
Go to the documentation of this file.
1 #ifndef NS3_DEPRECATED_H
2 #define NS3_DEPRECATED_H
3 
4 #if defined(__GNUC__) && (__GNUC__ == 4) && (__GNUC_MINOR__ > 1)
5 #define NS_DEPRECATED __attribute__ ((deprecated))
6 #else
7 #define NS_DEPRECATED
8 #endif
9 
10 #endif /* NS3_DEPRECATED_H */