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

index.cpp « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f61e47849b6a2acfbf29e52c3e259c27a39abab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "storage/index.hpp"

#include "std/sstream.hpp"

namespace storage
{
storage::TCountryId const kInvalidCountryId;

bool IsCountryIdValid(TCountryId const & countryId)
{
  return countryId != kInvalidCountryId;
}
} //  namespace storage