2014-01-16 16:58:45 +00: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 19:42:16 +00:00
|
|
|
#ifndef COPYABLE_H
|
|
|
|
#define COPYABLE_H
|
|
|
|
|
|
|
|
class Copyable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
};
|
|
|
|
|
2010-08-22 00:15:28 +00:00
|
|
|
#endif // COPYABLE_H
|