// // Header.cpp // Esercitazioni_Programmazione_2 // // Created by Angelo Ciaramella on 25/04/23. // #include "Header_Classi_Derivate.hpp" /* Date::Date(int dd, int mm, int yy) { d = dd; m = mm; y = yy; } void Date::show_Date() { cout << "Giorno " << d << " Mese " << m << " Anno " << y << endl; } Point2D::Point2D(double a, double b) { x = a; y = b; } double Point2D::X(){ return x; } */