pyUtils.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_USD_PCP_PY_UTILS_H
8 #define PXR_USD_PCP_PY_UTILS_H
9 
10 #include "pxr/external/boost/python/dict.hpp"
11 
12 #include "pxr/pxr.h"
13 #include "pxr/usd/pcp/api.h"
14 #include "pxr/usd/pcp/types.h"
15 
16 #include <string>
17 
18 PXR_NAMESPACE_OPEN_SCOPE
19 
22 PCP_API
23 bool
24 PcpVariantFallbackMapFromPython(
25  const pxr_boost::python::dict& dict,
26  PcpVariantFallbackMap *result);
27 
28 PXR_NAMESPACE_CLOSE_SCOPE
29 
30 #endif // PXR_USD_PCP_PY_UTILS_H
std::map< std::string, std::vector< std::string > > PcpVariantFallbackMap
typedef std::map<std::string, std::vector<std::string>> PcpVariantFallbackMap
Definition: types.h:189