summaryrefslogtreecommitdiff
path: root/ConnectCall.h
blob: 20b859e0ff700cee8f51801b06d816eb2f17bb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _CONNECTCALL_H
#define _CONNECTCALL_H

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

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

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

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

#endif // _CONNECTCALL_H