Skip to content

Commit

Permalink
OrcCommand: WolfLauncher: Journal: rename namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienfl-orc committed Feb 10, 2021
1 parent 4bd1dd7 commit 1f50051
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/OrcCommand/Command/WolfLauncher/Journal.h
Expand Up @@ -19,7 +19,7 @@

#include "UploadNotification.h"

namespace Orc::Command::Output {
namespace Orc::Command::Wolf {

class Journal
{
Expand Down Expand Up @@ -53,4 +53,4 @@ class Journal
Orc::Text::Console& m_console;
};

} // namespace Orc::Command::Output
} // namespace Orc::Command::Wolf
4 changes: 2 additions & 2 deletions src/OrcCommand/Command/WolfLauncher/WolfExecution.h
Expand Up @@ -85,7 +85,7 @@ class WolfExecution
HRESULT NotifyTask(const CommandNotification::Ptr& item);

private:
Command::Output::Journal& m_journal;
Command::Wolf::Journal& m_journal;
Command::Wolf::Outcome::Outcome& m_outcome;

std::wstring m_logFilePath;
Expand Down Expand Up @@ -256,7 +256,7 @@ class WolfExecution

HRESULT CompleteArchive(UploadMessage::ITarget* pUploadMessageQueue);

WolfExecution(Command::Output::Journal& journal, Wolf::Outcome::Outcome& outcome)
WolfExecution(Journal& journal, Wolf::Outcome::Outcome& outcome)
: m_journal(journal)
, m_outcome(outcome)
{
Expand Down
2 changes: 1 addition & 1 deletion src/OrcCommand/Command/WolfLauncher/WolfLauncher.h
Expand Up @@ -194,7 +194,7 @@ class ORCUTILS_API Main : public UtilitiesMain
HRESULT Run_Keywords();

private:
Command::Output::Journal m_journal;
Journal m_journal;
Wolf::Outcome::Outcome m_outcome;

Configuration config;
Expand Down
4 changes: 2 additions & 2 deletions src/OrcCommand/Command/WolfLauncher/WolfTask.h
Expand Up @@ -34,7 +34,7 @@ class WolfTask
Done
} Status;

WolfTask(const std::wstring& commandSet, const std::wstring& command, Command::Output::Journal& journal)
WolfTask(const std::wstring& commandSet, const std::wstring& command, Journal& journal)
: m_journal(journal)
, m_commandSet(commandSet)
, m_command(command)
Expand Down Expand Up @@ -71,7 +71,7 @@ class WolfTask
std::vector<std::shared_ptr<CommandMessage>>& actions);

private:
Orc::Command::Output::Journal& m_journal;
Journal& m_journal;

std::wstring m_commandSet;
std::wstring m_command;
Expand Down

0 comments on commit 1f50051

Please sign in to comment.