diff options
author | Stephen Kelly <steveire@gmail.com> | 2011-07-13 00:13:33 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2011-08-07 16:33:47 (GMT) |
commit | 30880707c094ac5c0edd85d0857afb6fbae55326 (patch) | |
tree | 837b58ac331f34eeefaced63c4c0a71ee59ef69e /Tests/Module/GenerateExportHeader/libstatic/libstatic.cpp | |
parent | 955d5133ab2f8bca5372e81af544cafdafc31994 (diff) | |
download | CMake-30880707c094ac5c0edd85d0857afb6fbae55326.zip CMake-30880707c094ac5c0edd85d0857afb6fbae55326.tar.gz CMake-30880707c094ac5c0edd85d0857afb6fbae55326.tar.bz2 |
Add the GenerateExportMacro with unit tests.
Reviewed-by: Marcus D. Hanwell <marcus.hanwell@kitware.com>
Diffstat (limited to 'Tests/Module/GenerateExportHeader/libstatic/libstatic.cpp')
-rw-r--r-- | Tests/Module/GenerateExportHeader/libstatic/libstatic.cpp | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/Tests/Module/GenerateExportHeader/libstatic/libstatic.cpp b/Tests/Module/GenerateExportHeader/libstatic/libstatic.cpp new file mode 100644 index 0000000..c8b7d44 --- /dev/null +++ b/Tests/Module/GenerateExportHeader/libstatic/libstatic.cpp @@ -0,0 +1,87 @@ + +#include "libstatic.h" + +int Libstatic::libstatic() const +{ + return 0; +} + +int Libstatic::libstatic_exported() const +{ + return 0; +} + +int Libstatic::libstatic_deprecated() const +{ + return 0; +} + +int Libstatic::libstatic_not_exported() const { + return 0; +} + +int Libstatic::libstatic_excluded() const { + return 0; +} + +int LibstaticNotExported::libstatic() const +{ + return 0; +} + +int LibstaticNotExported::libstatic_exported() const +{ + return 0; +} + +int LibstaticNotExported::libstatic_deprecated() const +{ + return 0; +} + +int LibstaticNotExported::libstatic_not_exported() const { + return 0; +} + +int LibstaticNotExported::libstatic_excluded() const { + return 0; +} + +int LibstaticExcluded::libstatic() const +{ + return 0; +} + +int LibstaticExcluded::libstatic_exported() const +{ + return 0; +} + +int LibstaticExcluded::libstatic_deprecated() const +{ + return 0; +} + +int LibstaticExcluded::libstatic_not_exported() const { + return 0; +} + +int LibstaticExcluded::libstatic_excluded() const { + return 0; +} + +int libstatic_exported() { + return 0; +} + +int libstatic_deprecated() { + return 0; +} + +int libstatic_not_exported() { + return 0; +} + +int libstatic_excluded() { + return 0; +}
\ No newline at end of file |