Skip to content

Commit

Permalink
added missing reference and some whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
janwilmans committed Jul 14, 2017
1 parent 9b73425 commit e87fc5e
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions DebugView++/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#define VERSION 1,7,0,93
#define VERSION_STR "1.7.0.93"
#define VERSION 1,7,0,97
#define VERSION_STR "1.7.0.97"
5 changes: 5 additions & 0 deletions DebugViewConsole/DebugViewConsole.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DebugView++Lib\DebugView++Lib.vcxproj">
<Project>{5e5b7c33-8076-4e21-adf3-d56c8c28822a}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="..\packages\boost.1.64.0.0\build\native\boost.targets" Condition="Exists('..\packages\boost.1.64.0.0\build\native\boost.targets')" />
Expand Down
4 changes: 2 additions & 2 deletions include/DebugView++Lib/DBWinBuffer.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand All @@ -23,5 +23,5 @@ bool IsWindowsVistaOrGreater();
bool IsDBWinViewerActive();
bool HasGlobalDBWinReaderRights();

} // namespace debugviewpp
} // namespace debugviewpp
} // namespace fusion
4 changes: 2 additions & 2 deletions include/DebugView++Lib/DBWinReader.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand Down Expand Up @@ -42,5 +42,5 @@ class DBWinReader : public LogSource
const DbWinBuffer* m_dbWinBuffer;
};

} // namespace debugviewpp
} // namespace debugviewpp
} // namespace fusion
9 changes: 4 additions & 5 deletions include/DebugView++Lib/FileReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ class FileReader : public LogSource
~FileReader() override;

void Initialize() override;
typedef boost::signals2::signal<void()> UpdateSignal;
boost::signals2::connection SubscribeToUpdate(UpdateSignal::slot_type slot);
bool AtEnd() const override;
typedef boost::signals2::signal<void()> UpdateSignal;
boost::signals2::connection SubscribeToUpdate(UpdateSignal::slot_type slot);

bool AtEnd() const override;
HANDLE GetHandle() const override;
void Notify() override;
void PreProcess(Line& line) const override;
Expand All @@ -40,7 +40,6 @@ class FileReader : public LogSource
FileType::type m_fileType;

private:

void SafeAddLine(const std::string& line);
void ReadUntilEof();

Expand Down
6 changes: 3 additions & 3 deletions include/DebugView++Lib/FileWriter.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand All @@ -25,11 +25,11 @@ class FileWriter

private:
void Run();

std::ofstream m_ofstream;
LogFile& m_logfile;
std::thread m_thread;
};

} // namespace debugviewpp
} // namespace debugviewpp
} // namespace fusion
1 change: 0 additions & 1 deletion include/DebugView++Lib/Line.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

#include <string>
#include <vector>
#include <memory>

namespace fusion {
namespace debugviewpp {
Expand Down
4 changes: 2 additions & 2 deletions include/DebugView++Lib/LogFilter.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand All @@ -27,5 +27,5 @@ void SaveJson(const std::string& fileName, const std::string& name, const LogFil
FilterData LoadXml(const std::string& fileName);
FilterData LoadJson(const std::string& fileName);

} // namespace debugviewpp
} // namespace debugviewpp
} // namespace fusion
3 changes: 0 additions & 3 deletions include/DebugView++Lib/LogSources.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,8 @@
#include <boost/signals2.hpp>
#include "Win32/Win32Lib.h"
#include "DebugView++Lib/LogSource.h"
#include "DebugView++Lib/LineBuffer.h"
#include "DebugView++Lib/VectorLineBuffer.h"
#include "CobaltFusion/CircularBuffer.h"
#include "CobaltFusion/ExecutorClient.h"
#include "CobaltFusion/thread.h"
#include "DebugView++Lib/NewlineFilter.h"
#include "DebugView++Lib/ProcessMonitor.h"
#include "CobaltFusion/Throttle.h"
Expand Down
6 changes: 3 additions & 3 deletions include/IndexedStorageLib/IndexedStorage.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand Down Expand Up @@ -54,6 +54,6 @@ class SnappyStorage

std::vector<std::string> m_storage;
};
} // namespace indexedstorage

} // namespace indexedstorage
} // namespace fusion
2 changes: 1 addition & 1 deletion include/Win32/Utilities.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand Down
2 changes: 1 addition & 1 deletion include/Win32/Window.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

// Repository at: https://github.com/djeedjay/DebugViewPP/
Expand Down

0 comments on commit e87fc5e

Please sign in to comment.