Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Move some RepoMan code around
Browse files Browse the repository at this point in the history
  • Loading branch information
scunz committed Mar 22, 2015
1 parent dcb842b commit 04a20d9
Show file tree
Hide file tree
Showing 28 changed files with 105 additions and 85 deletions.
55 changes: 29 additions & 26 deletions Libs/libMacGitverCore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,21 @@ SET( SRC_FILES
MacGitver/GitPatchConsumer.cpp

RepoMan/AutoRefresher.cpp
RepoMan/Base.cpp
RepoMan/Ref.cpp
RepoMan/Branch.cpp
RepoMan/CollectionNode.cpp
RepoMan/Events.cpp
RepoMan/Repo.cpp
RepoMan/RepoMan.cpp
RepoMan/Remote.cpp
RepoMan/Tag.cpp
RepoMan/RefLog.cpp
RepoMan/Submodule.cpp
RepoMan/RefTreeNode.cpp
RepoMan/Namespace.cpp
RepoMan/Head.cpp

RepoMan/Frontend/Base.cpp
RepoMan/Frontend/Branch.cpp
RepoMan/Frontend/CollectionNode.cpp
RepoMan/Frontend/Namespace.cpp
RepoMan/Frontend/Ref.cpp
RepoMan/Frontend/RefLog.cpp
RepoMan/Frontend/RefTreeNode.cpp
RepoMan/Frontend/Remote.cpp
RepoMan/Frontend/Repo.cpp
RepoMan/Frontend/RepoMan.cpp
RepoMan/Frontend/Submodule.cpp
RepoMan/Frontend/Tag.cpp
RepoMan/Frontend/Head.cpp

RepoMan/Private/Dumper.cpp

Expand Down Expand Up @@ -132,20 +133,22 @@ SET( PRI_HDR_FILES

RepoMan/AutoRefresher.hpp

RepoMan/Private/BasePrivate.hpp
RepoMan/Private/BranchPrivate.hpp
RepoMan/Private/CollectionNodePrivate.hpp
RepoMan/Private/NamespacePrivate.hpp
RepoMan/Private/RefPrivate.hpp
RepoMan/Private/RefLogPrivate.hpp
RepoMan/Private/RefTreeNodePrivate.hpp
RepoMan/Private/RemotePrivate.hpp
RepoMan/Private/RepoPrivate.hpp
RepoMan/Private/RepoManPrivate.hpp
RepoMan/Private/SubmodulePrivate.hpp
RepoMan/Private/TagPrivate.hpp
RepoMan/Private/Dumper.hpp
RepoMan/Private/HeadPrivate.hpp

RepoMan/Data/BaseData.hpp
RepoMan/Data/BranchData.hpp
RepoMan/Data/CollectionNodeData.hpp
RepoMan/Data/NamespaceData.hpp
RepoMan/Data/RefData.hpp
RepoMan/Data/RefLogData.hpp
RepoMan/Data/RefTreeNodeData.hpp
RepoMan/Data/RemoteData.hpp
RepoMan/Data/RepoData.hpp
RepoMan/Data/RepoManData.hpp
RepoMan/Data/SubmoduleData.hpp
RepoMan/Data/TagData.hpp
RepoMan/Data/HeadData.hpp


RepoMan/Config/RepoManConfigPage.hpp

Expand Down
2 changes: 1 addition & 1 deletion Libs/libMacGitverCore/RepoMan/Config/RepoManConfigPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

#include "libMacGitverCore/RepoMan/Config/RepoManConfigPage.hpp"
#include "libMacGitverCore/RepoMan/Private/RepoManPrivate.hpp"
#include "libMacGitverCore/RepoMan/Data/RepoManData.hpp"
#include "libMacGitverCore/RepoMan/AutoRefresher.hpp"
#include "libMacGitverCore/RepoMan/RepoMan.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_BRANCH_PRIVATE_HPP
#define REPOMAN_BRANCH_PRIVATE_HPP

#include "RepoMan/Private/RefPrivate.hpp"
#include "RepoMan/Data/RefData.hpp"

#include "RepoMan/Branch.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_COLLECTION_NODE_PRIVATE_HPP
#define REPOMAN_COLLECTION_NODE_PRIVATE_HPP

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/CollectionNode.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#pragma once

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/Head.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_NAMESPACE_PRIVATE_HPP
#define REPOMAN_NAMESPACE_PRIVATE_HPP

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/Namespace.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
*/

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/Ref.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_REF_LOG_PRIVATE_HPP
#define REPOMAN_REF_LOG_PRIVATE_HPP

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/RefLog.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_REF_TREE_NODE_PRIVATE_HPP
#define REPOMAN_REF_TREE_NODE_PRIVATE_HPP

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/RefTreeNode.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_REMOTE_PRIVATE_HPP
#define REPOMAN_REMOTE_PRIVATE_HPP

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/Remote.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
*/

#include "RepoMan/Private/BasePrivate.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/Repo.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_REPO_MAN_PRIVATE_HPP
#define REPOMAN_REPO_MAN_PRIVATE_HPP

#include "libMacGitverCore/RepoMan/Private/BasePrivate.hpp"
#include "libMacGitverCore/RepoMan/Data/BaseData.hpp"

#include "libMacGitverCore/RepoMan/RepoMan.hpp"
#include "libMacGitverCore/RepoMan/AutoRefresher.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_SUBMODULE_PRIVATE_HPP
#define REPOMAN_SUBMODULE_PRIVATE_HPP

#include "RepoMan/Private/RepoPrivate.hpp"
#include "RepoMan/Data/RepoData.hpp"

#include "RepoMan/Submodule.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef REPOMAN_TAG_PRIVATE_HPP
#define REPOMAN_TAG_PRIVATE_HPP

#include "RepoMan/Private/RefPrivate.hpp"
#include "RepoMan/Data/RefData.hpp"

#include "RepoMan/Tag.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,17 @@

#include "App/MacGitver.hpp"

#include "Base.hpp"
#include "Repo.hpp"
#include "RepoMan.hpp"
#include "RefTreeNode.hpp"
#include "CollectionNode.hpp"
#include "Events.hpp"

#include "Private/RepoManPrivate.hpp"
#include "Private/Dumper.hpp"
#include "Private/BasePrivate.hpp"
#include "RepoMan/Base.hpp"
#include "RepoMan/Repo.hpp"
#include "RepoMan/RepoMan.hpp"
#include "RepoMan/RefTreeNode.hpp"
#include "RepoMan/CollectionNode.hpp"
#include "RepoMan/Events.hpp"

#include "RepoMan/Data/RepoManData.hpp"
#include "RepoMan/Data/BaseData.hpp"

#include "RepoMan/Private/Dumper.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
#include "RepoMan/Head.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/BranchPrivate.hpp"

#include "RepoMan/Data/BranchData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

#include "libHeavenIcons/IconRef.hpp"

#include "CollectionNode.hpp"
#include "RepoMan/CollectionNode.hpp"

#include "Private/Dumper.hpp"
#include "Private/CollectionNodePrivate.hpp"
#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Data/CollectionNodeData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@
*
*/

#include "Head.hpp"
#include "Events.hpp"
#include "RepoMan/Events.hpp"

#include "RepoMan/Head.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/HeadPrivate.hpp"

#include "RepoMan/Data/HeadData.hpp"

#include "RepoMan/Branch.hpp"
#include "RepoMan/Repo.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
*
*/

#include "Namespace.hpp"
#include "Events.hpp"
#include "RepoMan/Events.hpp"

#include "RepoMan/Namespace.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/NamespacePrivate.hpp"
#include "RepoMan/Data/NamespaceData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
#include "libGitWrap/Reference.hpp"
#include "libGitWrap/RefName.hpp"

#include "Ref.hpp"
#include "Repo.hpp"
#include "Events.hpp"
#include "RepoMan/Events.hpp"

#include "Private/Dumper.hpp"
#include "Private/RefPrivate.hpp"
#include "RepoMan/Ref.hpp"
#include "RepoMan/Repo.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Data/RefData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
*
*/

#include "RefLog.hpp"
#include "RepoMan/RefLog.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/RefLogPrivate.hpp"
#include "RepoMan/Data/RefLogData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@
*
*/

#include "RefTreeNode.hpp"
#include "Events.hpp"
#include "RepoMan/Events.hpp"

#include "RepoMan/RefTreeNode.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/RefTreeNodePrivate.hpp"

#include "RepoMan/Data/RefTreeNodeData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@

#include "libGitWrap/Result.hpp"

#include "Repo.hpp"
#include "Remote.hpp"
#include "Events.hpp"
#include "CollectionNode.hpp"
#include "RepoMan/Events.hpp"

#include "RepoMan/Repo.hpp"
#include "RepoMan/Remote.hpp"
#include "RepoMan/CollectionNode.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/RemotePrivate.hpp"

#include "RepoMan/Data/RemoteData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@
#include "RepoMan/Submodule.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/RepoPrivate.hpp"
#include "RepoMan/Private/RemotePrivate.hpp"
#include "RepoMan/Private/CollectionNodePrivate.hpp"

#include "RepoMan/Data/RepoData.hpp"
#include "RepoMan/Data/RemoteData.hpp"
#include "RepoMan/Data/CollectionNodeData.hpp"

namespace RM
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
#include "RepoMan/Events.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/RepoManPrivate.hpp"
#include "RepoMan/Private/RepoPrivate.hpp"

#include "RepoMan/Data/RepoManData.hpp"
#include "RepoMan/Data/RepoData.hpp"

#include "libBlueSky/Application.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
*
*/

#include "Submodule.hpp"
#include "Events.hpp"
#include "RepoMan/Events.hpp"

#include "RepoMan/Submodule.hpp"

#include "RepoMan/Private/Dumper.hpp"
#include "RepoMan/Private/SubmodulePrivate.hpp"
#include "RepoMan/Data/SubmoduleData.hpp"

namespace RM
{
Expand Down
Loading

0 comments on commit 04a20d9

Please sign in to comment.