fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. /**
  5.  * myapi/include/Printer.h
  6.  */
  7. namespace api {
  8.  
  9. class Printer {
  10. public:
  11. void print();
  12. };
  13.  
  14. }
  15.  
  16. /**
  17.  * mylib/src/MyPrinter.cpp
  18.  */
  19. namespace api {
  20.  
  21. void Printer::print() {
  22. cout << "hello" << endl;
  23. }
  24.  
  25. }
  26.  
  27. /**
  28.  * myapp/src/main.cpp
  29.  */
  30. int main() {
  31. api::Printer printer;
  32. printer.print();
  33. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
hello