Advertisement
Guest User

compito.h

a guest
Jul 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct elem{
  5.     char* ident;
  6.     elem* pun;
  7. };
  8.  
  9.  
  10.  
  11.  
  12. class NastroTrasportatore{
  13.     elem* primo;
  14.     int quanti;
  15. public:
  16.     NastroTrasportatore();
  17.     void aggiungi(const char*);
  18.     void rimuovi();
  19.     friend ostream& operator <<(ostream& os, const NastroTrasportatore&);
  20.     //SECONDA PARTE
  21.    
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement