#include <vector>
class Testo;

class Biblioteca
{
public:
  Biblioteca();
  ~Biblioteca();
  int numeroTesti() const;
  Testo * preleva( int ) const; 

private:
  vector<Testo *> t_;
};