//: parkplatz.h : Autos und Zweiraeder - R.Richter 2007-01-13 ///////////////////////////////////////////////////////////// #ifndef PARKPLATZ_H #define PARKPLATZ_H class Parkplatz { public: Parkplatz(int fahrzeuganzahl, int reifenanzahl); int autos () const; int mopeds() const; private: int fahrzeuge; int reifen; }; #endif // PARKPLATZ_H