summaryrefslogtreecommitdiffstats
path: root/src/svnqt/cache/ReposLog.hpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2021-03-19 10:06:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2021-03-19 10:06:06 +0900
commit283bc34244d24be02e90b767a82826a4ca8da186 (patch)
tree5b9d49d503a44b8ceea82744f11b8014e3b41ca3 /src/svnqt/cache/ReposLog.hpp
parent971ab170cfa851d20a42864231676f05f4cdb4cc (diff)
downloadtdesvn-283bc34244d24be02e90b767a82826a4ca8da186.tar.gz
tdesvn-283bc34244d24be02e90b767a82826a4ca8da186.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/svnqt/cache/ReposLog.hpp')
-rw-r--r--src/svnqt/cache/ReposLog.hpp70
1 files changed, 0 insertions, 70 deletions
diff --git a/src/svnqt/cache/ReposLog.hpp b/src/svnqt/cache/ReposLog.hpp
deleted file mode 100644
index 1d28037..0000000
--- a/src/svnqt/cache/ReposLog.hpp
+++ /dev/null
@@ -1,70 +0,0 @@
-#ifndef _REPOS_LOG_HPP
-#define _REPOS_LOG_HPP
-
-#include "svnqt/svnqt_defines.hpp"
-#include "svnqt/svnqttypes.hpp"
-#include "svnqt/revision.hpp"
-
-#include <tqsqldatabase.h>
-#include <tqstring.h>
-
-namespace svn
-{
-
-class Client;
-
-namespace cache
-{
-
-class SVNTQT_EXPORT ReposLog
-{
-protected:
- svn::Client*m_Client;
- mutable TQDataBase m_Database;
- TQString m_ReposRoot;
- svn::Revision m_latestHead;
- //! internal insert.
- bool _insertLogEntry(const svn::LogEntry&);
- bool checkFill(svn::Revision&_start,svn::Revision&_end,bool checkHead);
-
-public:
- ReposLog(svn::Client*aClient,const TQString&aRepository=TQString());
-
- TQString ReposRoot() const
- {
- return m_ReposRoot;
- }
-
- TQDataBase Database() const
- {
- return m_Database;
- }
- //! search for latest head revision on network for assigned repository
- svn::Revision latestHeadRev();
- //! return lates revision in cache
- svn::Revision latestCachedRev();
- //! simple retrieves logentries
- /*!
- * This method acts on network, too for checking if there are new entries on server.
- *
- * @param target where to store the result
- * @param start revision to start for search
- * @param end revision to end for search
- * @param noNetwork if yes, no check on network for newer revisions will made
- * @return true if entries found and no error, if no entries found false
- * @exception svn::DatabaseException in case of errors
- */
- bool simpleLog(LogEntriesMap&target,const svn::Revision&start,const svn::Revision&end,bool noNetwork=false);
- svn::Revision date2numberRev(const svn::Revision&,bool noNetwork=false);
- bool fillCache(const svn::Revision&end);
- bool insertLogEntry(const svn::LogEntry&);
- bool log(const svn::Path&,const svn::Revision&start, const svn::Revision&end,const svn::Revision&peg,svn::LogEntriesMap&target, bool strictNodeHistory,int limit);
- bool itemExists(const svn::Revision&,const svn::Path&);
-
- bool isValid()const;
-};
-
-}
-}
-
-#endif