Enzo
Loading...
Searching...
No Matches
PrmName.h
1#pragma once
2
3#include "Engine/Types.h"
4namespace enzo::prm
5{
6class Name
7{
8public:
9 Name(bt::String token, bt::String label);
10 Name();
11
12 bt::String getToken() const;
13 bt::String getLabel() const;
14private:
15 bt::String token_;
16 bt::String label_;
17};
18
19}
Basic attribute, parameter, and node types for Enzo.
Definition PrmName.h:7