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

ftypes_sponsored.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 221f00e03bd745ed832655c3409d7b2dda0ac9c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "indexer/ftypes_sponsored.hpp"

#include "indexer/classificator.hpp"

#include "private.h"

namespace ftypes
{
BaseSponsoredChecker::BaseSponsoredChecker(std::string const & sponsoredType)
{
  m_types.push_back(classif().GetTypeByPath({"sponsored", sponsoredType}));
}

Fc2018Checker::Fc2018Checker()
{
  m_types.push_back(classif().GetTypeByPath({"event", "fc2018"}));
}
}  // namespace ftypes