You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
#include "headeronly.h"
|
|
|
|
|
|
|
|
#ifndef HEADERONLY_DEFINE
|
|
|
|
#error Expected HEADERONLY_DEFINE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SHAREDLIB_DEFINE
|
|
|
|
#error Unexpected SHAREDLIB_DEFINE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main(int, char**)
|
|
|
|
{
|
|
|
|
HeaderOnly ho;
|
|
|
|
return ho.foo();
|
|
|
|
}
|