VisuTwin Canvas
C++ 3D Engine — Metal Backend
Loading...
Searching...
No Matches
stringIds.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2025-2026 Arnis Lektauers
3//
4// Created by Arnis Lektauers on 11.11.2025.
5//
6#pragma once
7
8#include <string>
9#include <unordered_map>
10
11namespace visutwin::canvas
12{
17 {
18 public:
22 int get(const std::string& name);
23
24 private:
25 std::unordered_map<std::string, int> _map;
26
27 int _id = 0;
28 };
29}
int get(const std::string &name)
Definition stringIds.cpp:10