/***************************************
 box.h

 Example source file for section 4a
 of the LoomSoft article: Organizing your Project

 Web: http://loomsoft.net
 Email: jay@loomsoft.net
***************************************/
#ifndef _BOX_H_
#define _BOX_H_

class box
{
public:
int side_length;

void reduce_side_length(void);
}; 

extern box the_box;

#endif