fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class Folha
  6. {
  7.  
  8. public:
  9.  
  10. void Marcar(){
  11. cout<<"Marcar de folha";
  12. }
  13. };
  14.  
  15. class Papel
  16. {
  17. Folha f;
  18.  
  19. public:
  20.  
  21. Papel(Folha &folha_){
  22. f = folha_;
  23. }
  24.  
  25. void MarcarFolha()
  26. {
  27. f.Marcar();
  28. }
  29. };
  30.  
  31. int main()
  32. {
  33. Folha folha;
  34. Papel papel(folha);
  35. papel.MarcarFolha();
  36.  
  37. return 0;
  38. }
  39.  
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Marcar de folha