@@ -0,0 +1,15 @@
#pragma once
#include <iostream>
using namespace std;
class Fecha {
public:
Fecha();
bool leer();
void escribir();
bool es_igual(Fecha &f);
bool es_menor(Fecha &f);
private:
int d, m, a;
int h, min, s;
};
The note is not visible to the blocked user.