summaryrefslogtreecommitdiffstats
path: root/Tests/Framework/foo.cxx
blob: 69808881c9c9b8255d86c59eb38e864c03ed3639 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#ifdef _WIN32
#  define CM_TEST_LIB_EXPORT  __declspec( dllexport )
#else 
#  define CM_TEST_LIB_EXPORT
#endif
CM_TEST_LIB_EXPORT void foo()
{
  printf("foo\n");
}