summaryrefslogtreecommitdiff
path: root/SingleShotCall.h
blob: 0ded6ba1a1cc71ec4b903031c1888db19bce3c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _SINGLESHOTCALL_H
#define _SINGLESHOTCALL_H

#include "Context.h"
#include "SlotCall.h"

class SingleShotCall : public SlotCall {
public:
    virtual ~SingleShotCall() {}

    static bool processCallExpr(Context &context, const clang::CallExpr *expr);

private:
    SingleShotCall(Context &context, const clang::CallExpr *expr);
};

#endif // _SINGLESHOTCALL_H