Changeset 116 in pacpusframework for trunk/src/FileLib/src


Ignore:
Timestamp:
Jun 25, 2013, 1:44:25 PM (11 years ago)
Author:
Marek Kurdej
Message:

Added: PacpusException - base class for all exceptions. DbiteExceptions inherits from it.
Added: PacpusLibConfig.h - dllimport/dllexport clauses separated from pacpus.h.
Update: comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/FileLib/src/DbiteException.cpp

    r91 r116  
    1111
    1212DbiteException::DbiteException(const std::string& what)
    13     : mWhat(what)
     13    : PacpusException(what)
    1414{
    1515}
     
    1818{
    1919}
    20 
    21 const char* DbiteException::what() const throw()
    22 {
    23     return mWhat.c_str();
    24 }
Note: See TracChangeset for help on using the changeset viewer.