00001 00002 #ifndef ld_h 00003 #define ld_h 00004 #include "header.h" 00005 00006 using namespace std; 00007 00009 00022 class listadoppia 00023 { 00024 protected: 00026 elem* p0; 00027 00029 elem* p1; 00030 00032 int numelem; 00033 public: 00035 00040 int numero(); 00041 00043 00047 listadoppia(); 00048 00050 00056 ~listadoppia(); 00057 00059 00068 void inserisci(int n); 00069 00071 00077 int estrai(); 00078 }; 00079 00080 #endif