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.
18 lines
223 B
18 lines
223 B
11 years ago
|
|
||
|
#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();
|
||
|
}
|