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.
27 lines
478 B
27 lines
478 B
4 years ago
|
|
||
|
void className::set(const objectName& obj)
|
||
|
{
|
||
|
statement1();
|
||
|
MACRO_BEGIN_STUFF(param)
|
||
|
DOSTUFF(params)
|
||
|
MACRO_ELSE_STUFF()
|
||
|
DOMORESTUFF(moreparams)
|
||
|
junk = 1;
|
||
|
MACRO2_BEGIN_STUFF
|
||
|
junk += 3;
|
||
|
MACRO2_ELSE_STUFF
|
||
|
junk += 4;
|
||
|
MACRO2_END_STUFF
|
||
|
DOLASTSTUFF(lastparams)
|
||
|
MACRO_END_STUFF()
|
||
|
statement2();
|
||
|
}
|
||
|
|
||
|
|
||
|
MACRO2_BEGIN_STUFF
|
||
|
// comment
|
||
|
MACRO2_ELSE_STUFF
|
||
|
/* Comment */
|
||
|
MACRO2_END_STUFF
|
||
|
|