Loading...
Searching...
No Matches
heuristicQuery.h
Go to the documentation of this file.
1//
2// Copyright 2026 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef USDLOD_HEURISTIC_QUERY_H
8#define USDLOD_HEURISTIC_QUERY_H
9
11
12#include "pxr/pxr.h"
13#include "pxr/usd/usdLod/api.h"
14
15#include "pxr/base/tf/token.h"
16
17PXR_NAMESPACE_OPEN_SCOPE
18
31{
32public:
39
40public:
41 UsdLodHeuristicQuery() = default;
42
44 UsdLodHeuristicQuery(const TfToken& lodDomainIn)
45 : lodDomain(lodDomainIn)
46 { }
47
50 USDLOD_API
52
53
54};
55
56PXR_NAMESPACE_CLOSE_SCOPE
57
58#endif
Token for efficient comparison, assignment, and hashing of known strings.
Definition token.h:71
This class is the base class of all heuristic query objects.
UsdLodHeuristicQuery(const TfToken &lodDomainIn)
Construct with an explicit domain.
TfToken lodDomain
The LOD domain of this heuristic.
virtual USDLOD_API ~UsdLodHeuristicQuery()
Destructor.
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...