1
0

libstatic.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #include "libstatic.h"
  2. int Libstatic::libstatic() const
  3. {
  4. return 0;
  5. }
  6. int Libstatic::libstatic_exported() const
  7. {
  8. return 0;
  9. }
  10. int Libstatic::libstatic_deprecated() const
  11. {
  12. return 0;
  13. }
  14. int Libstatic::libstatic_not_exported() const {
  15. return 0;
  16. }
  17. int Libstatic::libstatic_excluded() const {
  18. return 0;
  19. }
  20. int LibstaticNotExported::libstatic() const
  21. {
  22. return 0;
  23. }
  24. int LibstaticNotExported::libstatic_exported() const
  25. {
  26. return 0;
  27. }
  28. int LibstaticNotExported::libstatic_deprecated() const
  29. {
  30. return 0;
  31. }
  32. int LibstaticNotExported::libstatic_not_exported() const {
  33. return 0;
  34. }
  35. int LibstaticNotExported::libstatic_excluded() const {
  36. return 0;
  37. }
  38. int LibstaticExcluded::libstatic() const
  39. {
  40. return 0;
  41. }
  42. int LibstaticExcluded::libstatic_exported() const
  43. {
  44. return 0;
  45. }
  46. int LibstaticExcluded::libstatic_deprecated() const
  47. {
  48. return 0;
  49. }
  50. int LibstaticExcluded::libstatic_not_exported() const {
  51. return 0;
  52. }
  53. int LibstaticExcluded::libstatic_excluded() const {
  54. return 0;
  55. }
  56. int libstatic_exported() {
  57. return 0;
  58. }
  59. int libstatic_deprecated() {
  60. return 0;
  61. }
  62. int libstatic_not_exported() {
  63. return 0;
  64. }
  65. int libstatic_excluded() {
  66. return 0;
  67. }