Skip to main content
system PAUSE's user avatar
system PAUSE's user avatar
system PAUSE's user avatar
system PAUSE
  • Member for 15 years, 6 months
  • Last seen more than 1 year ago
About
/**
 * 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;
}
21
gold badges
63
silver badges
59
bronze badges
971
Score
13
Posts
13
Posts %
953
Score
12
Posts
12
Posts %
395
Score
10
Posts
10
Posts %
186
Score
6
Posts
6
Posts %
29
Score
16
Posts
16
Posts %
22
Score
11
Posts
11
Posts %