diff options
Diffstat (limited to 'src/svnqt/client_cat.cpp')
-rw-r--r-- | src/svnqt/client_cat.cpp | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/src/svnqt/client_cat.cpp b/src/svnqt/client_cat.cpp index 0454642..fd9fabb 100644 --- a/src/svnqt/client_cat.cpp +++ b/src/svnqt/client_cat.cpp @@ -1,5 +1,5 @@ /* - * Port for usage with qt-framework and development for tdesvn + * Port for usage with tqt-framework and development for tdesvn * (C) 2005-2007 by Rajko Albrecht * http://tdesvn.alwins-world.de */ @@ -31,25 +31,25 @@ #pragma warning( disable: 4786 )// debug symbol truncated #endif // svncpp -#include "client_impl.hpp" +#include "client_impl.h" // Subversion api #include "svn_client.h" //#include "svn_io.h" -#include "svnqt/exception.hpp" -#include "svnqt/pool.hpp" -#include "svnqt/status.hpp" -#include "svnqt/svnqt_defines.hpp" -#include "svnqt/svnstream.hpp" -#include "svnqt/svnfilestream.hpp" +#include "svnqt/exception.h" +#include "svnqt/pool.h" +#include "svnqt/status.h" +#include "svnqt/svnqt_defines.h" +#include "svnqt/svnstream.h" +#include "svnqt/svnfilestream.h" namespace svn { TQByteArray Client_impl::cat(const Path & path, const Revision & revision, - const Revision & peg_revision) throw (ClientException) + const Revision & peg_revision) { svn::stream::SvnByteStream buffer(*m_context); svn_error_t * error = internal_cat(path,revision,peg_revision,buffer); @@ -63,7 +63,7 @@ namespace svn Client_impl::cat(svn::stream::SvnStream&buffer, const Path & path, const Revision & revision, - const Revision & peg_revision) throw (ClientException) + const Revision & peg_revision) { svn_error_t * error = internal_cat(path,revision,peg_revision,buffer); if (error != 0) @@ -74,7 +74,7 @@ namespace svn Client_impl::get (const Path & path, const TQString & target, const Revision & revision, - const Revision & peg_revision) throw (ClientException) + const Revision & peg_revision) { svn::stream::SvnFileOStream buffer(target,*m_context); svn_error_t * error = internal_cat(path,revision,peg_revision,buffer); @@ -97,9 +97,3 @@ namespace svn } } - -/* ----------------------------------------------------------------- - * local variables: - * eval: (load-file "../../rapidsvn-dev.el") - * end: - */ |