ciao .
Nel seguente codice:
codice:
//: C02:Fullwrap.h
// Completely hidden file IO
#ifndef FULLWRAP_H
#define FULLWRAP_H
class File {
std::FILE* f;
std::FILE* F(); // Produces checked pointer to f
public:
File(); // Create object but don't open file
File(const char* path,
const char* mode = "r");
.
.
.
che tipo di puntatori sono questi :
class File {
std::FILE* f;
std::FILE* F(); // Produces checked pointer to f
dichiarati prima delle parole chiave private,protected o public?
che visibilità hanno?
grazie.