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.
33 lines
428 B
33 lines
428 B
|
|
#ifndef BOOL_PROP1
|
|
#error Expected BOOL_PROP1
|
|
#endif
|
|
|
|
#ifndef BOOL_PROP2
|
|
#error Expected BOOL_PROP2
|
|
#endif
|
|
|
|
#ifndef BOOL_PROP3
|
|
#error Expected BOOL_PROP3
|
|
#endif
|
|
|
|
#ifndef STRING_PROP1
|
|
#error Expected STRING_PROP1
|
|
#endif
|
|
|
|
#ifndef STRING_PROP2
|
|
#error Expected STRING_PROP2
|
|
#endif
|
|
|
|
#ifndef STRING_PROP3
|
|
#error Expected STRING_PROP3
|
|
#endif
|
|
|
|
#include "iface2.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
Iface2 if2;
|
|
return if2.foo();
|
|
}
|