Loading...
Searching...
No Matches
xcpt.h
1//
2// Copyright 2019 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef HDPRMAN_XCPT_H
8#define HDPRMAN_XCPT_H
9
10#include "pxr/pxr.h"
11#include "hdPrman/api.h"
12#include "ri.hpp"
13
14PXR_NAMESPACE_OPEN_SCOPE
15
19
20class HdPrman_Xcpt : public RixXcpt::XcptHandler
21{
22public:
23 HDPRMAN_API virtual void HandleXcpt(int code, int severity,
24 const char* msg);
25 HDPRMAN_API virtual void HandleExitRequest(int code);
26 bool handleExit = false;
27};
28
29PXR_NAMESPACE_CLOSE_SCOPE
30
31#endif // HDPRMAN_XCPT_H
Defines an XcptHander for hdPrman.
Definition: xcpt.h:21