#ifndef COWBOYH #define COWBOYH #include using namespace std; class cowboy { int i; public: cowboy(int initial_i): i(initial_i) {} void chew() const {cout << this << " Gimme a chaw 'a 'baccy.\n";} void draw() const {cout << this << " Put 'em up, pardner!\n";} }; #endif