blob: 14f50e408fb6ed4c7161c9d69bce9d2bbbb9169e [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001#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