Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of system PAUSE

system PAUSE

system PAUSE has asked 15 questions and find answers to 15 problems.

Stats

1.1k
EtPoint
453
Vote count
15
questions
15
answers

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;
}