2014-01-16 17:58:45 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-05-11 21:42:16 +02:00
|
|
|
#ifndef DEFAULTONLY_H
|
|
|
|
#define DEFAULTONLY_H
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
class DefaultOnly
|
|
|
|
{
|
|
|
|
int data_;
|
|
|
|
|
|
|
|
DefaultOnly(const DefaultOnly&);
|
|
|
|
DefaultOnly& operator=(const DefaultOnly&);
|
|
|
|
public:
|
|
|
|
static int count;
|
|
|
|
|
|
|
|
DefaultOnly() : data_(-1) {++count;}
|
|
|
|
~DefaultOnly() {data_ = 0; --count;}
|
|
|
|
|
|
|
|
friend bool operator==(const DefaultOnly& x, const DefaultOnly& y)
|
|
|
|
{return x.data_ == y.data_;}
|
|
|
|
friend bool operator< (const DefaultOnly& x, const DefaultOnly& y)
|
|
|
|
{return x.data_ < y.data_;}
|
|
|
|
};
|
|
|
|
|
|
|
|
int DefaultOnly::count = 0;
|
|
|
|
|
2010-08-22 02:15:28 +02:00
|
|
|
#endif // DEFAULTONLY_H
|