File: check.h

package info (click to toggle)
clazy 1.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 5,248 kB
  • sloc: cpp: 23,552; python: 1,450; xml: 450; sh: 237; makefile: 46
file content (24 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
    %4

    SPDX-License-Identifier: LGPL-2.0-or-later
*/

#ifndef CLAZY_%1_H
#define CLAZY_%1_H

#include "checkbase.h"

/**
 * See README-%3.md for more info.
 */
class %2 : public CheckBase
{
public:
    explicit %2(const std::string &name);
    void VisitDecl(clang::Decl *) override;
    void VisitStmt(clang::Stmt *) override;
private:
};

#endif