jat@google.com | 134be54 | 2009-08-03 15:30:11 +0000 | [diff] [blame] | 1 | #ifndef _H_mozincludes |
2 | #define _H_mozincludes | ||||
3 | |||||
4 | // Defines private prototypes for copy constructor and assigment operator. Do | ||||
5 | // not implement these methods. | ||||
6 | #define DISALLOW_EVIL_CONSTRUCTORS(CLASS) \ | ||||
7 | private: \ | ||||
8 | CLASS(const CLASS&); \ | ||||
9 | CLASS& operator=(const CLASS&) | ||||
10 | |||||
11 | #include "xpcom-config.h" | ||||
12 | #include "mozilla-config.h" | ||||
13 | |||||
14 | #endif |