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