58 lines
1.0 KiB
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
#ifndef LIBSTATIC_H
#define LIBSTATIC_H
#include "libstatic_export.h"
2016-07-09 11:21:54 +02:00
class LIBSTATIC_EXPORT Libstatic
{
2012-02-18 12:40:36 +02:00
public:
int libstatic() const;
int libstatic_exported() const;
int LIBSTATIC_DEPRECATED libstatic_deprecated() const;
int libstatic_not_exported() const;
int LIBSTATIC_NO_EXPORT libstatic_excluded() const;
};
2016-07-09 11:21:54 +02:00
class LibstaticNotExported
{
2012-02-18 12:40:36 +02: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-07-09 11:21:54 +02:00
class LIBSTATIC_NO_EXPORT LibstaticExcluded
{
2012-02-18 12:40:36 +02: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();
LIBSTATIC_DEPRECATED_EXPORT int libstatic_deprecated();
int libstatic_not_exported();
int LIBSTATIC_NO_EXPORT libstatic_excluded();
#endif