2011-07-13 04:13:33 +04:00
|
|
|
|
|
|
|
#ifndef LIBSHARED_H
|
|
|
|
#define LIBSHARED_H
|
|
|
|
|
|
|
|
#include "libshared_export.h"
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class LIBSHARED_EXPORT Libshared
|
|
|
|
{
|
2011-07-13 04:13:33 +04:00
|
|
|
public:
|
|
|
|
int libshared() const;
|
|
|
|
|
|
|
|
int libshared_exported() const;
|
|
|
|
|
|
|
|
int LIBSHARED_DEPRECATED libshared_deprecated() const;
|
|
|
|
|
|
|
|
int libshared_not_exported() const;
|
|
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded() const;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class LibsharedNotExported
|
|
|
|
{
|
2011-07-13 04:13:33 +04:00
|
|
|
public:
|
|
|
|
int libshared() const;
|
|
|
|
|
|
|
|
int LIBSHARED_EXPORT libshared_exported() const;
|
|
|
|
|
|
|
|
int LIBSHARED_DEPRECATED_EXPORT libshared_deprecated() const;
|
|
|
|
|
|
|
|
int libshared_not_exported() const;
|
|
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded() const;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
class LIBSHARED_NO_EXPORT LibsharedExcluded
|
|
|
|
{
|
2011-07-13 04:13:33 +04:00
|
|
|
public:
|
|
|
|
int libshared() const;
|
|
|
|
|
|
|
|
int LIBSHARED_EXPORT libshared_exported() const;
|
|
|
|
|
|
|
|
int LIBSHARED_DEPRECATED_EXPORT libshared_deprecated() const;
|
|
|
|
|
|
|
|
int libshared_not_exported() const;
|
|
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
LIBSHARED_EXPORT int libshared_exported();
|
|
|
|
|
|
|
|
LIBSHARED_DEPRECATED_EXPORT int libshared_deprecated();
|
|
|
|
|
|
|
|
int libshared_not_exported();
|
|
|
|
|
|
|
|
int LIBSHARED_NO_EXPORT libshared_excluded();
|
|
|
|
|
|
|
|
#endif
|