cURL: follow redirects
[LibreOffice.git] / idlc / inc / astbasetype.hxx
blob35d0cc1276d0f8f636c90c739bc1aa3e97881283
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_IDLC_INC_ASTBASETYPE_HXX
20 #define INCLUDED_IDLC_INC_ASTBASETYPE_HXX
22 #include <asttype.hxx>
23 #include <astexpression.hxx>
26 class AstBaseType : public AstType
28 public:
29 AstBaseType(const ExprType type, const OString& name, AstScope* pScope)
30 : AstType(NT_predefined, name, pScope)
31 , m_exprType(type)
34 virtual ~AstBaseType() override {}
36 virtual bool isUnsigned() const override {
37 switch (m_exprType) {
38 case ET_ushort:
39 case ET_ulong:
40 case ET_uhyper:
41 return true;
42 default:
43 return false;
47 ExprType getExprType() const
48 { return m_exprType; }
49 private:
50 const ExprType m_exprType;
53 #endif // INCLUDED_IDLC_INC_ASTBASETYPE_HXX
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */