22 lines
539 B
C
22 lines
539 B
C
|
//===- Group.h ------------------------------------------------------------===//
|
||
|
//
|
||
|
// The MCLinker Project
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
#ifndef MCLD_LD_GROUP_H_
|
||
|
#define MCLD_LD_GROUP_H_
|
||
|
|
||
|
namespace mcld {
|
||
|
|
||
|
/** \class Group
|
||
|
* \brief Group records the grouping of all regions
|
||
|
*/
|
||
|
class Group {};
|
||
|
|
||
|
} // namespace mcld
|
||
|
|
||
|
#endif // MCLD_LD_GROUP_H_
|