A Discrete-Event Network Simulator
API
deprecated.h
Go to the documentation of this file.
1 #ifndef NS3_DEPRECATED_H
2 #define NS3_DEPRECATED_H
3 
20 #if defined(__GNUC__) && (__GNUC__ == 4) && (__GNUC_MINOR__ > 1)
21 #define NS_DEPRECATED __attribute__ ((deprecated))
22 #else
23 #define NS_DEPRECATED
24 #endif
25 
26 #endif /* NS3_DEPRECATED_H */