In C++ is it possible to do something like this:
#define PREFIX "i_have_a_very_long_method_name_"
void PREFIX foo() {
}
Instead of this:
void i_have_a_very_long_method_name_foo() {
}
?
In C++ is it possible to do something like this:
#define PREFIX "i_have_a_very_long_method_name_"
void PREFIX foo() {
}
Instead of this:
void i_have_a_very_long_method_name_foo() {
}
?