98 lines
1.1 KiB
C++
Raw Normal View History

2012-02-18 12:40:36 +02:00
#include "libstatic.h"
int Libstatic::libstatic() const
{
return 0;
}
int Libstatic::libstatic_exported() const
{
return 0;
}
int Libstatic::libstatic_deprecated() const
{
return 0;
}
2016-07-09 11:21:54 +02:00
int Libstatic::libstatic_not_exported() const
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int Libstatic::libstatic_excluded() const
{
2012-02-18 12:40:36 +02:00
return 0;
}
int LibstaticNotExported::libstatic() const
{
return 0;
}
int LibstaticNotExported::libstatic_exported() const
{
return 0;
}
int LibstaticNotExported::libstatic_deprecated() const
{
return 0;
}
2016-07-09 11:21:54 +02:00
int LibstaticNotExported::libstatic_not_exported() const
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int LibstaticNotExported::libstatic_excluded() const
{
2012-02-18 12:40:36 +02:00
return 0;
}
int LibstaticExcluded::libstatic() const
{
return 0;
}
int LibstaticExcluded::libstatic_exported() const
{
return 0;
}
int LibstaticExcluded::libstatic_deprecated() const
{
return 0;
}
2016-07-09 11:21:54 +02:00
int LibstaticExcluded::libstatic_not_exported() const
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int LibstaticExcluded::libstatic_excluded() const
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int libstatic_exported()
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int libstatic_deprecated()
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int libstatic_not_exported()
{
2012-02-18 12:40:36 +02:00
return 0;
}
2016-07-09 11:21:54 +02:00
int libstatic_excluded()
{
2012-02-18 12:40:36 +02:00
return 0;
}