fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Folha
  5. {
  6.  
  7. public:
  8.  
  9. void Marcar(){
  10. cout<<"Marcar de folha";
  11. }
  12. };
  13.  
  14. class Papel
  15. {
  16. Folha *f;
  17.  
  18. public:
  19.  
  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. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Marcar de folha