1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
7 * This file is distributed under the University of Illinois Open Source
8 * License. See LICENSE.TXT for details.
20 // The same like for Tutorial1.
22 : public FilteringPlugin
< Tutorial2
>
25 Tutorial2( const InstantiationData
& data
);
26 virtual void run() override
;
27 // Will be called for every if statement.
28 bool VisitIfStmt( const IfStmt
* ifstmt
);
30 // Helper function to check if the statement is 'return false;'.
31 bool isReturnFalse( const Stmt
* stmt
);
36 #endif // POSTFIXINCREMENTFIX_H
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */