1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

add comments, privatize interface

llvm-svn: 74592
This commit is contained in:
Chris Lattner 2009-07-01 06:31:49 +00:00
parent f2d3b63535
commit f5d52813b2

View File

@ -6,6 +6,10 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file declares the MCSection class.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_MC_MCSECTION_H
#define LLVM_MC_MCSECTION_H
@ -14,11 +18,18 @@
namespace llvm {
/// MCSection - Instances of this class represent a uniqued identifier for a
/// section in the current translation unit. The MCContext class uniques and
/// creates these.
class MCSection {
std::string Name;
public:
private:
friend class MCContext;
MCSection(const char *_Name) : Name(_Name) {}
MCSection(const MCSection&); // DO NOT IMPLEMENT
void operator=(const MCSection&); // DO NOT IMPLEMENT
public:
const std::string &getName() const { return Name; }
};