CPlusPlus.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright (c) 2008 Roberto Raggi <[email protected]>
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be included in
  11. // all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. // THE SOFTWARE.
  20. #ifndef CPLUSPLUS_CPLUSPLUS_H
  21. #define CPLUSPLUS_CPLUSPLUS_H
  22. #include "AST.h"
  23. #include "ASTMatcher.h"
  24. #include "ASTPatternBuilder.h"
  25. #include "ASTVisitor.h"
  26. #include "ASTfwd.h"
  27. #include "Bind.h"
  28. #include "CPlusPlusForwardDeclarations.h"
  29. #include "Control.h"
  30. #include "CoreTypes.h"
  31. #include "DiagnosticClient.h"
  32. #include "FullySpecifiedType.h"
  33. #include "Lexer.h"
  34. #include "LiteralTable.h"
  35. #include "Literals.h"
  36. #include "MemoryPool.h"
  37. #include "Name.h"
  38. #include "NameVisitor.h"
  39. #include "Names.h"
  40. #include "ObjectiveCTypeQualifiers.h"
  41. #include "Parser.h"
  42. #include "QtContextKeywords.h"
  43. #include "Scope.h"
  44. #include "Symbol.h"
  45. #include "SymbolVisitor.h"
  46. #include "Symbols.h"
  47. #include "Token.h"
  48. #include "TranslationUnit.h"
  49. #include "Type.h"
  50. #include "Matcher.h"
  51. #include "TypeVisitor.h"
  52. #include "Templates.h"
  53. #endif // CPLUSPLUS_CPLUSPLUS_H