Changeset 30bfe74 in nscp for NSCPlugin.h
- Timestamp:
- 11/12/07 20:26:00 (6 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2, stable
- Children:
- 5782414
- Parents:
- eceb8c7
- File:
-
- 1 edited
-
NSCPlugin.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
NSCPlugin.h
r860f310 r30bfe74 59 59 */ 60 60 NSPluginException(std::string file, std::string error) : file_(file), error_(error) { 61 }62 /**63 *64 * @param file DLL filename (for which the exception is thrown)65 * @param sError An error message (human readable format)66 * @param nError Error code to be appended at the end of the string67 * @todo Change this to be some form of standard error code and merge with above.68 */69 NSPluginException(std::string file, std::string sError, int nError) : file_(file) {70 std::stringstream s;71 s << sError;72 s << nError;73 error_ = s.str();74 75 61 } 76 62 };
Note: See TracChangeset
for help on using the changeset viewer.








