File indexing completed on 2024-04-28 03:52:27

0001 #include "library.hpp"
0002 
0003 #if LIBRARY_BUILD_DEPRECATED_SINCE(2, 0)
0004 void function_deprecatedAt2_0()
0005 {
0006 }
0007 #endif
0008 
0009 #if LIBRARY_BUILD_DEPRECATED_SINCE(2, 12)
0010 void function_deprecatedAt2_12()
0011 {
0012 }
0013 #endif
0014 
0015 void function_not_deprecated()
0016 {
0017 }
0018 
0019 #if LIBRARY_BUILD_DEPRECATED_SINCE(2, 0)
0020 void Class::method_deprecatedAt2_0()
0021 {
0022 }
0023 #endif
0024 
0025 #if LIBRARY_BUILD_DEPRECATED_SINCE(2, 12)
0026 void Class::method_deprecatedAt2_12()
0027 {
0028 }
0029 #endif
0030 
0031 void Class::method_not_deprecated()
0032 {
0033 }