Use friend class instead of protected members.
the build was successful Details

The reference got cluttered after I changed the private members to
protected.
This commit is contained in:
tastytea 2019-01-04 20:07:11 +01:00
bovenliggende 455eba820b
commit 8bb322edb9
Getekend door: tastytea
GPG sleutel-ID: CFC39497F1B26E07
3 gewijzigde bestanden met toevoegingen van 4 en 3 verwijderingen

Bestand weergeven

@ -42,6 +42,7 @@ using std::array;
class Identiconpp
{
public:
friend class Testiconpp;
/*!
* @brief List of identicon algorithms
*/
@ -89,7 +90,7 @@ public:
*/
Magick::Image generate(const string &digest, const uint16_t width = 100);
protected:
private:
const uint8_t _rows;
const uint8_t _columns;
const algorithm _type;

Bestand weergeven

@ -6,7 +6,7 @@
using std::string;
class Testiconpp : protected Identiconpp
class Testiconpp : private Identiconpp
{
public:
explicit Testiconpp(const uint8_t columns, const uint8_t rows,

Bestand weergeven

@ -6,7 +6,7 @@
using std::string;
class Testiconpp : protected Identiconpp
class Testiconpp : private Identiconpp
{
public:
explicit Testiconpp()