Fix update detection in app-installers
[platform/core/appfw/app-installers.git] / src / common / app_query_interface.h
1 // Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMMON_APP_QUERY_INTERFACE_H_
6 #define COMMON_APP_QUERY_INTERFACE_H_
7
8 namespace common_installer {
9
10 class AppQueryInterface {
11  public:
12   virtual ~AppQueryInterface() { }
13   virtual bool IsAppInstalledByArgv(int argc, char** argv) = 0;
14 };
15
16 }  // namespace common_installer
17
18 #endif  // COMMON_APP_QUERY_INTERFACE_H_