Kaydet (Commit) f3698af7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:includeform: idlc

Change-Id: Ia32beed408de33fbe8ed59ddcab5b01ddc3b8218
üst 3f2a9e2d
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
#define INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
#include <astdeclaration.hxx>
#include "astdeclaration.hxx"
#include "astscope.hxx"
#include <registry/types.hxx>
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTBASETYPE_HXX
#define INCLUDED_IDLC_INC_ASTBASETYPE_HXX
#include <asttype.hxx>
#include <astexpression.hxx>
#include "asttype.hxx"
#include "astexpression.hxx"
class AstBaseType : public AstType
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTCONSTANT_HXX
#define INCLUDED_IDLC_INC_ASTCONSTANT_HXX
#include <astdeclaration.hxx>
#include <astexpression.hxx>
#include "astdeclaration.hxx"
#include "astexpression.hxx"
namespace typereg { class Writer; }
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTCONSTANTS_HXX
#define INCLUDED_IDLC_INC_ASTCONSTANTS_HXX
#include <astmodule.hxx>
#include "astmodule.hxx"
class AstConstants : public AstModule
{
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTDECLARATION_HXX
#define INCLUDED_IDLC_INC_ASTDECLARATION_HXX
#include <idlc.hxx>
#include "idlc.hxx"
#include <registry/registry.hxx>
class AstScope;
......
......@@ -19,9 +19,9 @@
#ifndef INCLUDED_IDLC_INC_ASTENUM_HXX
#define INCLUDED_IDLC_INC_ASTENUM_HXX
#include <asttype.hxx>
#include <astscope.hxx>
#include <astconstant.hxx>
#include "asttype.hxx"
#include "astscope.hxx"
#include "astconstant.hxx"
class AstEnum : public AstType
, public AstScope
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTEXCEPTION_HXX
#define INCLUDED_IDLC_INC_ASTEXCEPTION_HXX
#include <aststruct.hxx>
#include "aststruct.hxx"
class AstException : public AstStruct
{
......
......@@ -23,7 +23,7 @@
#include <memory>
#include <idlc.hxx>
#include "idlc.hxx"
// Enum to define all the different operators to combine expressions
enum class ExprComb
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTINTERFACE_HXX
#define INCLUDED_IDLC_INC_ASTINTERFACE_HXX
#include <asttype.hxx>
#include <astscope.hxx>
#include "asttype.hxx"
#include "astscope.hxx"
#include "inheritedinterface.hxx"
#include <map>
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTINTERFACEMEMBER_HXX
#define INCLUDED_IDLC_INC_ASTINTERFACEMEMBER_HXX
#include <astinterface.hxx>
#include "astinterface.hxx"
class AstInterfaceMember : public AstDeclaration
{
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTMODULE_HXX
#define INCLUDED_IDLC_INC_ASTMODULE_HXX
#include <astdeclaration.hxx>
#include <astscope.hxx>
#include "astdeclaration.hxx"
#include "astscope.hxx"
class AstModule : public AstDeclaration
, public AstScope
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTNEEDS_HXX
#define INCLUDED_IDLC_INC_ASTNEEDS_HXX
#include <astservice.hxx>
#include "astservice.hxx"
class AstNeeds : public AstDeclaration
{
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTOBSERVES_HXX
#define INCLUDED_IDLC_INC_ASTOBSERVES_HXX
#include <astinterface.hxx>
#include "astinterface.hxx"
class AstObserves : public AstDeclaration
{
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTOPERATION_HXX
#define INCLUDED_IDLC_INC_ASTOPERATION_HXX
#include <astdeclaration.hxx>
#include <astscope.hxx>
#include "astdeclaration.hxx"
#include "astscope.hxx"
namespace typereg { class Writer; }
......
......@@ -20,7 +20,7 @@
#ifndef INCLUDED_IDLC_INC_ASTPARAMETER_HXX
#define INCLUDED_IDLC_INC_ASTPARAMETER_HXX
#include <astmember.hxx>
#include "astmember.hxx"
enum Direction { DIR_IN, DIR_OUT, DIR_INOUT };
......
......@@ -19,11 +19,11 @@
#ifndef INCLUDED_IDLC_INC_ASTSCOPE_HXX
#define INCLUDED_IDLC_INC_ASTSCOPE_HXX
#include <idlc.hxx>
#include "idlc.hxx"
class AstExpression;
#include <astdeclaration.hxx>
#include <astexpression.hxx>
#include "astdeclaration.hxx"
#include "astexpression.hxx"
class AstScope
{
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTSEQUENCE_HXX
#define INCLUDED_IDLC_INC_ASTSEQUENCE_HXX
#include <asttype.hxx>
#include "asttype.hxx"
class AstSequence : public AstType
{
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTSERVICE_HXX
#define INCLUDED_IDLC_INC_ASTSERVICE_HXX
#include <astdeclaration.hxx>
#include <astscope.hxx>
#include "astdeclaration.hxx"
#include "astscope.hxx"
class AstService : public AstDeclaration
, public AstScope
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTSERVICEMEMBER_HXX
#define INCLUDED_IDLC_INC_ASTSERVICEMEMBER_HXX
#include <astservice.hxx>
#include "astservice.hxx"
class AstServiceMember : public AstDeclaration
{
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTSTRUCT_HXX
#define INCLUDED_IDLC_INC_ASTSTRUCT_HXX
#include <asttype.hxx>
#include <astscope.hxx>
#include "asttype.hxx"
#include "astscope.hxx"
#include "idlctypes.hxx"
class AstStruct;
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTTYPE_HXX
#define INCLUDED_IDLC_INC_ASTTYPE_HXX
#include <astdeclaration.hxx>
#include "astdeclaration.hxx"
class AstType : public AstDeclaration
{
......
......@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTTYPEDEF_HXX
#define INCLUDED_IDLC_INC_ASTTYPEDEF_HXX
#include <asttype.hxx>
#include "asttype.hxx"
class AstTypeDef : public AstType
{
......
......@@ -19,9 +19,9 @@
#ifndef INCLUDED_IDLC_INC_ERRORHANDLER_HXX
#define INCLUDED_IDLC_INC_ERRORHANDLER_HXX
#include <astdeclaration.hxx>
#include <astexpression.hxx>
#include <astenum.hxx>
#include "astdeclaration.hxx"
#include "astexpression.hxx"
#include "astenum.hxx"
enum class ErrorCode
{
......
......@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_FEHELPER_HXX
#define INCLUDED_IDLC_INC_FEHELPER_HXX
#include <asttype.hxx>
#include <astinterface.hxx>
#include "asttype.hxx"
#include "astinterface.hxx"
#include <vector>
......
......@@ -19,9 +19,9 @@
#ifndef INCLUDED_IDLC_INC_IDLC_HXX
#define INCLUDED_IDLC_INC_IDLC_HXX
#include <idlctypes.hxx>
#include <aststack.hxx>
#include <options.hxx>
#include "idlctypes.hxx"
#include "aststack.hxx"
#include "options.hxx"
#ifdef SAL_UNX
#define SEPARATOR '/'
......
......@@ -20,7 +20,7 @@
#ifndef INCLUDED_IDLC_INC_OPTIONS_HXX
#define INCLUDED_IDLC_INC_OPTIONS_HXX
#include <idlctypes.hxx>
#include "idlctypes.hxx"
typedef std::unordered_map< OString, OString > OptionMap;
......
......@@ -27,7 +27,7 @@
#include <astobserves.hxx>
#include <astneeds.hxx>
#include <astsequence.hxx>
#include "astoperation.hxx"
#include <astoperation.hxx>
#include <osl/diagnose.h>
......
......@@ -20,7 +20,7 @@
#include <astinterface.hxx>
#include <astattribute.hxx>
#include <astoperation.hxx>
#include "idlc.hxx"
#include <idlc.hxx>
#include <registry/version.h>
#include <registry/writer.hxx>
......
......@@ -20,10 +20,10 @@
#include <sal/config.h>
#include "astmember.hxx"
#include "astoperation.hxx"
#include "astservice.hxx"
#include "asttype.hxx"
#include <astmember.hxx>
#include <astoperation.hxx>
#include <astservice.hxx>
#include <asttype.hxx>
bool AstService::checkLastConstructor() const {
AstOperation const * last = static_cast< AstOperation const * >(getLast());
......
......@@ -18,10 +18,10 @@
*/
#include "aststructinstance.hxx"
#include <aststructinstance.hxx>
#include "asttype.hxx"
#include "idlctypes.hxx"
#include <asttype.hxx>
#include <idlctypes.hxx>
#include <rtl/strbuf.hxx>
#include <rtl/string.hxx>
......
......@@ -19,7 +19,7 @@
#include <fehelper.hxx>
#include <errorhandler.hxx>
#include "idlc.hxx"
#include <idlc.hxx>
FeDeclarator::FeDeclarator(const OString& name)
: m_name(name)
......
......@@ -28,11 +28,11 @@
#include <astinterface.hxx>
#include <astoperation.hxx>
#include <astbasetype.hxx>
#include "astdeclaration.hxx"
#include "astparameter.hxx"
#include "astsequence.hxx"
#include "asttype.hxx"
#include "asttypedef.hxx"
#include <astdeclaration.hxx>
#include <astparameter.hxx>
#include <astsequence.hxx>
#include <asttype.hxx>
#include <asttypedef.hxx>
#include <osl/diagnose.h>
#include <osl/file.hxx>
......
......@@ -18,7 +18,7 @@
*/
#include "idlc.hxx"
#include <idlc.hxx>
#include <sal/main.h>
#include <string.h>
......
......@@ -18,7 +18,7 @@
*/
#include "options.hxx"
#include <options.hxx>
#include <osl/diagnose.h>
#include <rtl/string.hxx>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment