libstatic.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. {
  16. return 0;
  17. }
  18. int Libstatic::libstatic_excluded() const
  19. {
  20. return 0;
  21. }
  22. int LibstaticNotExported::libstatic() const
  23. {
  24. return 0;
  25. }
  26. int LibstaticNotExported::libstatic_exported() const
  27. {
  28. return 0;
  29. }
  30. int LibstaticNotExported::libstatic_deprecated() const
  31. {
  32. return 0;
  33. }
  34. int LibstaticNotExported::libstatic_not_exported() const
  35. {
  36. return 0;
  37. }
  38. int LibstaticNotExported::libstatic_excluded() const
  39. {
  40. return 0;
  41. }
  42. int LibstaticExcluded::libstatic() const
  43. {
  44. return 0;
  45. }
  46. int LibstaticExcluded::libstatic_exported() const
  47. {
  48. return 0;
  49. }
  50. int LibstaticExcluded::libstatic_deprecated() const
  51. {
  52. return 0;
  53. }
  54. int LibstaticExcluded::libstatic_not_exported() const
  55. {
  56. return 0;
  57. }
  58. int LibstaticExcluded::libstatic_excluded() const
  59. {
  60. return 0;
  61. }
  62. int libstatic_exported()
  63. {
  64. return 0;
  65. }
  66. int libstatic_deprecated()
  67. {
  68. return 0;
  69. }
  70. int libstatic_not_exported()
  71. {
  72. return 0;
  73. }
  74. int libstatic_excluded()
  75. {
  76. return 0;
  77. }