1 #include <creaSystem.h>
3 int main(int argc, char* argv[])
5 std::cout << "** creaSample_preprocessor : begin of main "<<std::endl;
8 std::cout << "* DEF1 is defined "<<std::endl;
9 std::cout << " Value = [" << CREA_STRINGIFY_SYMBOL(DEF1) << "]" << std::endl;
13 std::cout << "* DEF2 is defined "<<std::endl;
14 std::cout << " Value = [" << CREA_STRINGIFY_SYMBOL(DEF2) << "]" << std::endl;
18 std::cout << "* DEF3 is defined "<<std::endl;
19 std::cout << " Value = [" << CREA_STRINGIFY_SYMBOL(DEF3) << "]" << std::endl;
24 std::cout << "** creaSample_preprocessor : end of main "<<std::endl;