Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app_store.hpp « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74991b2a56f250d08c8fc8603e5b93e0572ee77c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "std/stdint.hpp"

struct HttpFinishedParams;

namespace appstore
{
  class Client
  {
    /// @name HTTP callbacks
    //@{
    void OnVersionCheck(HttpFinishedParams const & params);
    //@}

  public:
    void RequestVersionCheck(int64_t countriesVersion, int64_t purchasesVersion);
  };
}