Changeset 87 in pacpusframework


Ignore:
Timestamp:
03/27/13 16:38:14 (11 years ago)
Author:
morasjul
Message:

Correction du bug de link entre PacpusLib et FileLib

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/Pacpus/kernel/DbiteException.h

    r86 r87  
    3232     * @param what Information about the exception.
    3333     */
    34     DbiteException(const std::string& what)
    35         : mWhat(what)
    36     {
    37     }
     34    DbiteException(const std::string& what);
    3835
    3936    /** Dtor of DbiteException. */
    40     virtual ~DbiteException() throw()
    41     {
    42     }
     37    virtual ~DbiteException() throw();
     38
    4339
    4440    /** Get more information about the error.
    4541     * @return Message containing information about the error.
    4642     */
    47     virtual const char* what() const throw()
    48     {
    49         return mWhat.c_str();
    50     }
     43    virtual const char* what() const throw();
     44
    5145
    5246private:
  • trunk/src/FileLib/CMakeLists.txt

    r64 r87  
    4444target_link_libraries(
    4545    ${PROJECT_NAME}
    46     PacpusLib
    4746)
    4847
  • trunk/src/FileLib/src/DbiteException.cpp

    r86 r87  
    99using namespace pacpus;
    1010
    11 //DbiteException::DbiteException(const std::string& what)
    12 //    : mWhat(what)
    13 //{
    14 //}
     11DbiteException::DbiteException(const std::string& what)
     12    : mWhat(what)
     13{
     14}
    1515
    16 //DbiteException::~DbiteException() throw()
    17 //{
    18 //}
     16DbiteException::~DbiteException() throw()
     17{
     18}
    1919
    20 //const char* DbiteException::what() const throw()
    21 //{
    22 //    return mWhat.c_str();
    23 //}
     20const char* DbiteException::what() const throw()
     21{
     22    return mWhat.c_str();
     23}
  • trunk/src/PacpusLib/CMakeLists.txt

    r81 r87  
    7575    ${QT_LIBRARIES}
    7676    ${PACPUS_DEPENDENCIES_LIB}
     77    FileLib
    7778)
    7879
Note: See TracChangeset for help on using the changeset viewer.