aboutsummaryrefslogtreecommitdiffstats
path: root/libnavi/include/RequestManageListener.h
blob: 3b0c932b05066628039d8153aea8c97f9b2f87f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2017 AISIN AW CO.,LTD

#pragma once

#include <json-c/json.h>

class RequestManageListener
{
public:
	RequestManageListener() {
	}
	virtual ~RequestManageListener() {
	}

	virtual void OnReply(struct json_object *reply) = 0;
};