Changeset 59 in pacpusframework for trunk/include/Pacpus/kernel/DbiteException.h


Ignore:
Timestamp:
Jan 9, 2013, 11:30:53 AM (12 years ago)
Author:
Marek Kurdej
Message:

Major: FileLib is now a shared library.
Added: FileLibConfig.h to handle dllimport/dllexport on Windows.
Note: MSVC warning C4251 is a normal thing when using an STL as a member field in a DLL-exported class.

File:
1 edited

Legend:

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

    r31 r59  
    1212#define DEF_PACPUS_DBITEEXCEPTION_H
    1313
     14#include <Pacpus/kernel/FileLibConfig.h>
     15
    1416#include <exception>
    1517#include <string>
     
    1719namespace pacpus {
    1820
    19 class DbiteException
     21class FILELIB_API DbiteException
    2022        : public std::exception
    2123{
    2224public:
     25    /// @todo Documentation
    2326    DbiteException();
     27    /// @todo Documentation
    2428    DbiteException(const char * what);
     29    /// @todo Documentation
    2530    ~DbiteException() throw();
    2631
     32    /// @todo Documentation
    2733    virtual const char * what() const throw();
    2834
Note: See TracChangeset for help on using the changeset viewer.