Home | History | Annotate | Download | only in sample
      1 #include <stdio.h>
      2 #include "hello_cpp.h"
      3 
      4 Hello::Hello()
      5 {
      6 }
      7 
      8 Hello::~Hello()
      9 {
     10 }
     11 
     12 void Hello::printMessage(char* msg)
     13 {
     14   printf("C++ example printing message: %s", msg);
     15 }
     16 
     17 int main(void)
     18 {
     19   Hello hello_obj;
     20   hello_obj.printMessage("Hello world!\n");
     21   return 0;
     22 }
     23