summaryrefslogtreecommitdiff
path: root/Tests/Module/GenerateExportHeader/lib_shared_and_static/libshared_and_static.h
blob: 049bfe9c4d06d4a71e69c1a55cc17644adf2a9a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

#ifndef SHARED_AND_STATIC_H
#define SHARED_AND_STATIC_H

#include "libshared_and_static_export.h"

class LIBSHARED_AND_STATIC_EXPORT LibsharedAndStatic {
public:
  int libshared_and_static() const;

  int libshared_and_static_exported() const;

  int LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;

  int libshared_and_static_not_exported() const;

  int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
};

class LibsharedAndStaticNotExported {
public:
  int libshared_and_static() const;

  int LIBSHARED_AND_STATIC_EXPORT libshared_and_static_exported() const;

  int LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;

  int libshared_and_static_not_exported() const;

  int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
};

class LIBSHARED_AND_STATIC_NO_EXPORT LibsharedAndStaticExcluded {
public:
  int libshared_and_static() const;

  int LIBSHARED_AND_STATIC_EXPORT libshared_and_static_exported() const;

  int LIBSHARED_AND_STATIC_DEPRECATED libshared_and_static_deprecated() const;

  int libshared_and_static_not_exported() const;

  int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded() const;
};

LIBSHARED_AND_STATIC_EXPORT int libshared_and_static_exported();

LIBSHARED_AND_STATIC_DEPRECATED_EXPORT int libshared_and_static_deprecated();

int libshared_and_static_not_exported();

int LIBSHARED_AND_STATIC_NO_EXPORT libshared_and_static_excluded();

#endif