// ***************************************************************** // Author: Zhixiang Chen // Class: CSCI/CMPE 1170, Spring 2009 // Lab 16: Header file for Lab 16 // Date: January 12, 2009 // Comment: The code here is meant to be revised. // ***************************************************************** #include #include using namespace std; #ifndef LAB_16_HEAD_H #define LAB_16_HEAD_H //draw head void drawHead() { //your code is here } //draw neck void drawNeck( ) //use reference paramter to receive the choice { //your code is here } //draw arms void drawArms() { //your code is here } //draw body void drawBody( ) //use reference paramter to receive the choice { //your code is here } //draw body void drawLegs( ) //use reference paramter to receive the choice { //your code is here } #endif