Advertisement
Guest User

ElencoManoscritti.h

a guest
Jan 31st, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #ifndef _ELENCO_MANOSCRITTI
  2. #define _ELENCO_MANOSCRITTI
  3. #include "Manoscritto.h"
  4.  
  5. typedef Manoscritto T;
  6.  
  7. class Elenco{
  8.       private:
  9.          static const int N=10;
  10.          T E[N];
  11.          int t;
  12.       public:
  13.          Elenco();
  14.          void push(const T &);
  15.          void scrivi(const char *);
  16.          bool full() const;
  17. };
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement