libshared.cpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #include "libshared.h"
  2. int Libshared::libshared() const
  3. {
  4. return 0;
  5. }
  6. int Libshared::libshared_exported() const
  7. {
  8. return 0;
  9. }
  10. int Libshared::libshared_deprecated() const
  11. {
  12. return 0;
  13. }
  14. int Libshared::libshared_not_exported() const
  15. {
  16. return 0;
  17. }
  18. int Libshared::libshared_excluded() const
  19. {
  20. return 0;
  21. }
  22. int LibsharedNotExported::libshared() const
  23. {
  24. return 0;
  25. }
  26. int LibsharedNotExported::libshared_exported() const
  27. {
  28. return 0;
  29. }
  30. int LibsharedNotExported::libshared_deprecated() const
  31. {
  32. return 0;
  33. }
  34. int LibsharedNotExported::libshared_not_exported() const
  35. {
  36. return 0;
  37. }
  38. int LibsharedNotExported::libshared_excluded() const
  39. {
  40. return 0;
  41. }
  42. int LibsharedExcluded::libshared() const
  43. {
  44. return 0;
  45. }
  46. int LibsharedExcluded::libshared_exported() const
  47. {
  48. return 0;
  49. }
  50. int LibsharedExcluded::libshared_deprecated() const
  51. {
  52. return 0;
  53. }
  54. int LibsharedExcluded::libshared_not_exported() const
  55. {
  56. return 0;
  57. }
  58. int LibsharedExcluded::libshared_excluded() const
  59. {
  60. return 0;
  61. }
  62. int libshared()
  63. {
  64. return 0;
  65. }
  66. int libshared_exported()
  67. {
  68. return 0;
  69. }
  70. int libshared_deprecated()
  71. {
  72. return 0;
  73. }
  74. int libshared_not_exported()
  75. {
  76. return 0;
  77. }
  78. int libshared_excluded()
  79. {
  80. return 0;
  81. }