2011-07-13 04:13:33 +04:00
|
|
|
|
|
|
|
#ifndef LIBSTATIC_H
|
|
|
|
#define LIBSTATIC_H
|
|
|
|
|
|
|
|
#include "libstatic_export.h"
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class LIBSTATIC_EXPORT Libstatic
|
|
|
|
{
|
2011-07-13 04:13:33 +04:00
|
|
|
public:
|
|
|
|
int libstatic() const;
|
|
|
|
|
2011-08-11 12:54:21 +04:00
|
|
|
int libstatic_exported() const;
|
2011-07-13 04:13:33 +04:00
|
|
|
|
|
|
|
int LIBSTATIC_DEPRECATED libstatic_deprecated() const;
|
|
|
|
|
|
|
|
int libstatic_not_exported() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_NO_EXPORT libstatic_excluded() const;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class LibstaticNotExported
|
|
|
|
{
|
2011-07-13 04:13:33 +04:00
|
|
|
public:
|
|
|
|
int libstatic() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_EXPORT libstatic_exported() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_DEPRECATED libstatic_deprecated() const;
|
|
|
|
|
|
|
|
int libstatic_not_exported() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_NO_EXPORT libstatic_excluded() const;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class LIBSTATIC_NO_EXPORT LibstaticExcluded
|
|
|
|
{
|
2011-07-13 04:13:33 +04:00
|
|
|
public:
|
|
|
|
int libstatic() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_EXPORT libstatic_exported() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_DEPRECATED libstatic_deprecated() const;
|
|
|
|
|
|
|
|
int libstatic_not_exported() const;
|
|
|
|
|
|
|
|
int LIBSTATIC_NO_EXPORT libstatic_excluded() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
LIBSTATIC_EXPORT int libstatic_exported();
|
|
|
|
|
2011-08-11 02:18:33 +04:00
|
|
|
LIBSTATIC_DEPRECATED_EXPORT int libstatic_deprecated();
|
2011-07-13 04:13:33 +04:00
|
|
|
|
|
|
|
int libstatic_not_exported();
|
|
|
|
|
|
|
|
int LIBSTATIC_NO_EXPORT libstatic_excluded();
|
|
|
|
|
|
|
|
#endif
|