void Say::hello()
{
	std::cout << "hello, pretty_function=" 
        << __PRETTY_FUNCTION__ 
        << " FUNCTION=" << __FUNCTION__
        << " func=" << __func__ << std::endl;

    printhello();
 //   osl::MD5 md5;
}
Example #2
0
int main(int argc, char** argv)
{
  int times, i;
  if (argc < 2) {
    printf("need at least one parameter, the number of times to print\n");
    return 1;
  }
  times = atoi(argv[1]);
  if (times < 2) {
    printf("param needs to be at least 2\n");
    return 2;
  } 
  for (i=0;i<times/2;++i)
    printhello();
  for (i=times/2;i<times;++i)
    printgoodbye();
  return 0;
}
Example #3
0
int main() {
    printhello();
}