4,033 reputation
42041
bio website
location
age
visits member for 3 years, 4 months
seen May 25 at 14:44
stats profile views 1,158
/**
 * Default constructor
 * INPUT PARAMETERS: none
 * INPUT/OUTPUT PARAMETERS: none
 * RETURNS: n/a
 *
 * Initializes the instance.
 */
UselessCommentsDemo::UselessCommentsDemo()
   : data( NULL )
{
}

/**
 * Destructor
 * INPUT PARAMETERS: none
 * INPUT/OUTPUT PARAMETERS: none
 * RETURNS: n/a
 *
 * Does nothing.
 */
UselessCommentsDemo::~UselessCommentsDemo()
{
}

/**
 * Copy constructor
 * INPUT PARAMETERS:
 *   other -- an instance of this class
 * INPUT/OUTPUT PARAMETERS: none
 * RETURNS: n/a
 *
 * Initializes the new instance as a copy of the other instance.
 */
UselessCommentsDemo::UselessCommentsDemo(const UselessCommentsDemo& other)
{
   this->data = other.data;
}

71
× 13
34
× 3
56
× 5
28
× 3
51
× 12
24
× 16
44
× 3
21
43
× 2
20
× 4
all time   by type  
403 up 74 question
24 down 353 answer