All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pluginDesc.h
1//
2// Copyright 2016 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef PXR_IMAGING_HF_PLUGIN_DESC_H
8#define PXR_IMAGING_HF_PLUGIN_DESC_H
9
10#include "pxr/pxr.h"
11#include "pxr/base/tf/token.h"
12
13#include <vector>
14
15PXR_NAMESPACE_OPEN_SCOPE
16
17
31 TfToken id;
32 std::string displayName;
33 int priority;
34};
35
36typedef std::vector<HfPluginDesc> HfPluginDescVector;
37
38
39PXR_NAMESPACE_CLOSE_SCOPE
40
41#endif // PXR_IMAGING_HF_PLUGIN_DESC_H
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:71
Common structure used to report registered plugins in one of the plugin registries.
Definition: pluginDesc.h:30
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...