I saw the following class definition and cannot figure out the meaning of the line 1.
class Noisy {
public:
Noisy() throw();
~Noisy() throw();
Noisy& operator= (const Noisy&) throw();
Noisy (const Noisy&) throw(); // Line 1
};
What is the meaning of this line and what is the usage of this line?
Thank you