Something went wrong on our end
-
Bertram Kopf authoreda2a04df1
Parity.hh 161 B
#ifndef PARITY_HH
#define PARITY_HH
class Parity {
public:
Parity();
Parity(int parity);
~Parity();
int parity();
private:
int pvalue;
};
#endif