Logo white

OpenSystemsDevelopment / qpdf

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • qpdf
  • libqpdf
  • QPDFExc.cc
  • stick DLL_EXPORT in front of every public method of every public class ...
    1e74c03a
    git-svn-id: svn+q:///qpdf/trunk@688 71b93d88-0707-0410-a8cf-f5a4172ac649
    Jay Berkenbilt authored
    2009-08-06 19:00:25 +0000  
    Browse Code ยป
QPDFExc.cc 390 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

#include <qpdf/QPDFExc.hh>

#include <qpdf/QUtil.hh>

DLL_EXPORT
QPDFExc::QPDFExc(std::string const& message) :
    QEXC::General(message)
{
}

DLL_EXPORT
QPDFExc::QPDFExc(std::string const& filename, int offset,
		 std::string const& message) :
    QEXC::General(filename + ": offset " + QUtil::int_to_string(offset) +
		  ": " + message)
{
}

DLL_EXPORT
QPDFExc::~QPDFExc() throw ()
{
}