1/*
2 * Copyright (c) 2008-2015, NVIDIA CORPORATION. All rights reserved.
3 *
4 * NVIDIA CORPORATION and its licensors retain all intellectual property
5 * and proprietary rights in and to this software, related documentation
6 * and any modifications thereto. Any use, reproduction, disclosure or
7 * distribution of this software and related documentation without an express
8 * license agreement from NVIDIA CORPORATION is strictly prohibited.
9 */
10#ifndef PVD_ERROR_CODES_H
11#define PVD_ERROR_CODES_H
12
13namespace physx { namespace debugger {
14
15 struct PvdErrorType
16 {
17 enum Enum
18 {
19 Success = 0,
20 NetworkError,
21 ArgumentError,
22 InternalProblem
23 };
24 };
25
26 typedef PvdErrorType::Enum PvdError;
27}}
28
29#endif
30