/**
* 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;
}
Server Fault
Q&A for professional system and network administrators
Joined 3 years ago, last seen 1 month ago
173 reputation
5
badges
1 questions
1 answers
Programmers
Q&A for professional programmers interested in conceptual questions about software development
Joined 2 years ago, last seen 11 months ago
161 reputation
3
badges
0 questions
2 answers
English Language & Usage
Q&A for linguists, etymologists, and serious English language enthusiasts
Joined 2 years ago, last seen 5 months ago
153 reputation
17
badges
1 questions
2 answers
Motor Vehicle Maintenance & Repair
Q&A for mechanics and DIY enthusiast owners of cars, trucks, and motorcycles
Joined 2 years ago, last seen 1 year ago
148 reputation
14
badges
1 questions
0 answers
Meta Stack Overflow
Q&A for meta-discussion of the Stack Exchange family of Q&A websites
Joined 3 years ago, last seen 7 months ago
120 reputation
3
badges
1 questions
1 answers
Ask Different
Q&A for power users of Apple hardware and software
Joined 1 year ago, last seen 1 month ago
108 reputation
3
badges
1 questions
1 answers
Area 51
Stack Exchange Network staging zone, where users come together to build new Q&A sites
Joined 2 years ago, last seen 1 year ago
101 reputation
- questions
- answers