libstatic.cpp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #include "libstatic.h"
  2. int libstatic::Class::method() const
  3. {
  4. return 0;
  5. }
  6. int libstatic::Class::method_exported() const
  7. {
  8. return 0;
  9. }
  10. int libstatic::Class::method_deprecated() const
  11. {
  12. return 0;
  13. }
  14. int libstatic::Class::method_deprecated_exported() const
  15. {
  16. return 0;
  17. }
  18. int libstatic::Class::method_excluded() const
  19. {
  20. return 0;
  21. }
  22. int const libstatic::Class::data = 1;
  23. int const libstatic::Class::data_exported = 1;
  24. int const libstatic::Class::data_excluded = 1;
  25. int libstatic::ExportedClass::method() const
  26. {
  27. return 0;
  28. }
  29. int libstatic::ExportedClass::method_exported() const
  30. {
  31. return 0;
  32. }
  33. int libstatic::ExportedClass::method_deprecated() const
  34. {
  35. return 0;
  36. }
  37. int libstatic::ExportedClass::method_deprecated_exported() const
  38. {
  39. return 0;
  40. }
  41. int libstatic::ExportedClass::method_excluded() const
  42. {
  43. return 0;
  44. }
  45. int const libstatic::ExportedClass::data = 1;
  46. int const libstatic::ExportedClass::data_exported = 1;
  47. int const libstatic::ExportedClass::data_excluded = 1;
  48. int libstatic::ExcludedClass::method() const
  49. {
  50. return 0;
  51. }
  52. int libstatic::ExcludedClass::method_exported() const
  53. {
  54. return 0;
  55. }
  56. int libstatic::ExcludedClass::method_deprecated() const
  57. {
  58. return 0;
  59. }
  60. int libstatic::ExcludedClass::method_deprecated_exported() const
  61. {
  62. return 0;
  63. }
  64. int libstatic::ExcludedClass::method_excluded() const
  65. {
  66. return 0;
  67. }
  68. int const libstatic::ExcludedClass::data = 1;
  69. int const libstatic::ExcludedClass::data_exported = 1;
  70. int const libstatic::ExcludedClass::data_excluded = 1;
  71. int libstatic::function()
  72. {
  73. return 0;
  74. }
  75. int libstatic::function_exported()
  76. {
  77. return 0;
  78. }
  79. int libstatic::function_deprecated()
  80. {
  81. return 0;
  82. }
  83. int libstatic::function_deprecated_exported()
  84. {
  85. return 0;
  86. }
  87. int libstatic::function_excluded()
  88. {
  89. return 0;
  90. }
  91. int const libstatic::data = 1;
  92. int const libstatic::data_exported = 1;
  93. int const libstatic::data_excluded = 1;