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

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

#include "std/string.hpp"

namespace software_renderer
{

struct IconInfo
{
  string m_name;

  IconInfo() = default;
  explicit IconInfo(string const & name) : m_name(name) {}
};

}