libshared.cpp 1.7 KB

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