summaryrefslogtreecommitdiffstats
path: root/Tests/Module/GenerateExportHeader/libstatic/libstatic.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Module/GenerateExportHeader/libstatic/libstatic.h')
-rw-r--r--Tests/Module/GenerateExportHeader/libstatic/libstatic.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/Tests/Module/GenerateExportHeader/libstatic/libstatic.h b/Tests/Module/GenerateExportHeader/libstatic/libstatic.h
deleted file mode 100644
index 6072d9b..0000000
--- a/Tests/Module/GenerateExportHeader/libstatic/libstatic.h
+++ /dev/null
@@ -1,57 +0,0 @@
-
-#ifndef LIBSTATIC_H
-#define LIBSTATIC_H
-
-#include "libstatic_export.h"
-
-class LIBSTATIC_EXPORT Libstatic
-{
-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;
-};
-
-class LibstaticNotExported
-{
-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;
-};
-
-class LIBSTATIC_NO_EXPORT LibstaticExcluded
-{
-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