From 6ed9a9699997a2853ec1c9e91747c251e5cfc97b Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 15 Jun 2014 03:50:43 +0200 Subject: damn --- ccc/animal.cc | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 ccc/animal.cc (limited to 'ccc/animal.cc') diff --git a/ccc/animal.cc b/ccc/animal.cc deleted file mode 100644 index 3bad1b1..0000000 --- a/ccc/animal.cc +++ /dev/null @@ -1,37 +0,0 @@ -#include - -using namespace std; - - -class Animal -{ - public: - Animal() { // Konstruktor - cout << "Der Konstruktor wird aufgerufen." << endl; - m_alive = true; - } - - ~Animal() {cout << "Der Destruktor wird aufgerufen." << endl;} - - bool isAlive() { // Methode - return m_alive; - } - - void kill() { // Methode - m_alive=false; - } - - private: - bool m_alive; // Member-Variable -}; - - -int main(void) -{ - int i; - bool alive; - - Animal a; // Instanz von Animal - Animal b; // noch eine ^ -} - -- cgit v1.2.3