summaryrefslogtreecommitdiffstats
path: root/include/clang/Parse/AccessSpecifier.h
blob: 8d2cee8ea43ac46b25593c4b6f3a84611535d8ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//===--- AccessSpecifier.h - C++ Access Specifiers -*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines interfaces used for C++ access specifiers.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_PARSE_ACCESS_SPECIFIER_H
#define LLVM_CLANG_PARSE_ACCESS_SPECIFIER_H

namespace clang {

/// AccessSpecifier - A C++ access specifier (none, public, private,
/// protected).
enum AccessSpecifier {
  AS_none,
  AS_public,
  AS_protected,
  AS_private
};

} // end namespace clang

#endif
OpenPOWER on IntegriCloud