47 #if defined (PLAYER_STATIC)
48 #define PLAYERCC_EXPORT
49 #elif defined (playerc___EXPORTS)
50 #define PLAYERCC_EXPORT __declspec (dllexport)
52 #define PLAYERCC_EXPORT __declspec (dllimport)
55 #define PLAYERCC_EXPORT
66 class PLAYERCC_EXPORT PlayerError
79 std::string GetErrorStr()
const {
return(mStr); };
81 std::string GetErrorFun()
const {
return(mFun); };
83 int GetErrorCode()
const {
return(mCode); };
86 PlayerError(
const std::string aFun=
"",
87 const std::string aStr=
"",
The C++ exception class.
Definition: playererror.h:65