MapLibre Native Core
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
default_style.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace mbgl {
6 namespace util {
7 
8 class DefaultStyle {
9 public:
11 
12  const std::string& getUrl() const;
13  const std::string& getName() const;
14  int getCurrentVersion() const;
15 
16 private:
17  std::string url;
18  std::string name;
19  int currentVersion;
20 };
21 
22 } // end namespace util
23 } // end namespace mbgl
const std::string & getUrl() const
const std::string & getName() const
DefaultStyle(std::string, std::string, int)
int getCurrentVersion() const
std::unique_ptr< Expression > string(std::unique_ptr< Expression >, std::unique_ptr< Expression > def=nullptr)
Definition: actor.hpp:15