system PAUSE

2,154
Reputation
385 views

Registered User

Name system PAUSE
Member for 10 months
Seen 2 days ago
Website
Location
Age
/**
 * 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;
}
14

Questions

*
6

*
2

 

*
3

 
5
votes
5
answers
490
views

 

 

*
2
2
votes
6
answers
163
views

*
1

 

1 2 next

 

79

Answers

1 2 3 next

 

351

Votes

up331down
up20down

 

172

Tags

 

19

Badges