Skip to content

Commit

Permalink
- updated to SLikeNet 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke1410 committed Sep 15, 2019
1 parent a3ba67c commit 351981f
Show file tree
Hide file tree
Showing 1,036 changed files with 10,601 additions and 10,460 deletions.
5 changes: 4 additions & 1 deletion CmakeIncludes/Ogre3D/FindOGRE.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#This has been modified fron the original
# This file was taken from RakNet 4.082 without modifications.
# Please see licenses/RakNet license.txt for the underlying license and related copyright.

#This has been modified fron the original

include(${RakNet_SOURCE_DIR}/CmakeIncludes/Ogre3D/PreprocessorUtils.cmake)
include(${RakNet_SOURCE_DIR}/CmakeIncludes/Ogre3D/FindPkgMacros.cmake)
Expand Down
3 changes: 2 additions & 1 deletion DependentExtensions/Lobby2/Lobby2ResultCode.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* of patent rights can be found in the RakNet Patents.txt file in the same directory.
*
*
* Modified work: Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt)
* Modified work: Copyright (c) 2017-2018, SLikeSoft UG (haftungsbeschränkt)
*
* This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
* license found in the license.txt file in the root directory of this source tree.
Expand All @@ -16,6 +16,7 @@
#ifndef __LOBBY_2_RESULT_CODE_H
#define __LOBBY_2_RESULT_CODE_H

#include "slikenet/defines.h" // used for SLNet -> RakNet namespace change in RAKNET_COMPATIBILITY mode
namespace SLNet
{

Expand Down
3 changes: 2 additions & 1 deletion DependentExtensions/Lobby2/Rooms/RoomsErrorCodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* of patent rights can be found in the RakNet Patents.txt file in the same directory.
*
*
* Modified work: Copyright (c) 2017, SLikeSoft UG (haftungsbeschränkt)
* Modified work: Copyright (c) 2017-2018, SLikeSoft UG (haftungsbeschränkt)
*
* This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
* license found in the license.txt file in the root directory of this source tree.
Expand All @@ -16,6 +16,7 @@
#ifndef __ROOMS_ERROR_CODES_H
#define __ROOMS_ERROR_CODES_H

#include "slikenet/defines.h" // used for SLNet -> RakNet namespace change in RAKNET_COMPATIBILITY mode
namespace SLNet
{

Expand Down
2 changes: 2 additions & 0 deletions DependentExtensions/Swig/DLL_Swig/SLikeNet.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@
<ClCompile Include="..\..\..\Source\src\VariadicSQLParser.cpp" />
<ClCompile Include="..\..\..\Source\src\VitaIncludes.cpp" />
<ClCompile Include="..\..\..\Source\src\WSAStartupSingleton.cpp" />
<ClCompile Include="..\SwigOutput\CplusDLLIncludes\RakNet_wrap.cxx" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\Source\include\slikenet\_FindFirst.h" />
Expand Down Expand Up @@ -383,6 +384,7 @@
<ClInclude Include="..\..\..\Source\include\slikenet\WindowsIncludes.h" />
<ClInclude Include="..\..\..\Source\include\slikenet\WSAStartupSingleton.h" />
<ClInclude Include="..\..\..\Source\include\slikenet\XBox360Includes.h" />
<ClInclude Include="..\SwigOutput\CplusDLLIncludes\RakNet_wrap.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
//
// This file was taken from RakNet 4.082 without any modifications.
// This file was taken from RakNet 4.082.
// Please see licenses/RakNet license.txt for the underlying license and related copyright.
//
//
//
// Modified work: Copyright (c) 2018, SLikeSoft UG (haftungsbeschränkt)
//
// This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
// license found in the license.txt file in the root directory of this source tree.

//This is not parsed by swig but inserted into the generated C++ wrapper, these includes
//are needed so the wrapper includes the needed .h filese
Expand All @@ -15,7 +21,7 @@
#define _WIN32
#define _DEBUG
#define _RAKNET_DLL
#endif SWIGWIN
#endif
//TypeDefs
typedef int int32_t;
typedef unsigned int uint32_t;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
//
// This file was taken from RakNet 4.082 without any modifications.
// This file was taken from RakNet 4.082.
// Please see licenses/RakNet license.txt for the underlying license and related copyright.
//
//
//
// Modified work: Copyright (c) 2018, SLikeSoft UG (haftungsbeschränkt)
//
// This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
// license found in the license.txt file in the root directory of this source tree.

//--------------------------------Extends-----------------------------------
//This file extends classes with new C++ code, note that not all things are possible because
Expand Down Expand Up @@ -491,7 +497,7 @@ STRUCT_UNSIGNED_INT64_ARRAY_EXTEND_SPECIAL_RAKNETSTATISTICS(SetValueOverLastSeco

bool returnVal = self->GetConnectionListForRemoteSystem(remoteSystemGuid,tempInSystemAddress,tempInRakNetGUID,inOutLength);

for (int i=0;i<*inOutLength;i++)
for (unsigned int i=0;i<*inOutLength;i++)
{
saOut->Insert(tempInSystemAddress[i],__FILE__,__LINE__);
guidOut->Insert(tempInRakNetGUID[i],__FILE__,__LINE__);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
//
// This file was taken from RakNet 4.082 without any modifications.
// This file was taken from RakNet 4.082.
// Please see licenses/RakNet license.txt for the underlying license and related copyright.
//
//
//
// Modified work: Copyright (c) 2018, SLikeSoft UG (haftungsbeschränkt)
//
// This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
// license found in the license.txt file in the root directory of this source tree.

//----------Ignores----------------
//This file specifies things that should be ignored by Swig
Expand Down Expand Up @@ -336,6 +342,7 @@ IGNORERAKPEERANDINTERFACE(SetIncomingDatagramEventHandler( bool (*_incomingDatag
//Operators
//These need te be handled manually or not at all
%ignore operator const char*;
%ignore operator wchar_t*;
%ignore operator uint32_t;
%ignore operator &; //Not overloadable in C#
%ignore operator <<;//Doesn't work the same in C#, only usable with int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@
<Compile Include="SwigFiles\RakPeer.cs" />
<Compile Include="SwigFiles\RakPeerInterface.cs" />
<Compile Include="SwigFiles\RakString.cs" />
<Compile Include="SwigFiles\RakWString.cs" />
<Compile Include="SwigFiles\ReadyEvent.cs" />
<Compile Include="SwigFiles\ReadyEventSystemStatus.cs" />
<Compile Include="SwigFiles\RemoteSystemIndex.cs" />
Expand All @@ -152,12 +153,16 @@
<Compile Include="SwigFiles\StartupResult.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_bool.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_DataStructures__ListT_RakNetSocket2_p_t.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_DataStructures__ListT_RakNet__BitStream_p_t.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_DataStructures__ListT_RakNet__TM_TeamMember_p_t.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_DataStructures__ListT_RakNet__TM_Team_p_t.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_double.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_FILE.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_p_RakNet__TM_Team.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_p_RakNet__TM_TeamMember.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_p_RakNet__TM_World.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_p_wchar_t.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_RakNet__NatPunchthroughClient__SendPing.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_RakNet__ReadyEvent__RemoteSystem.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_RakNet__TCPInterface.cs" />
<Compile Include="SwigFiles\SWIGTYPE_p_RakNet__TM_World__JoinRequestHelper.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/*
* This file was taken from RakNet 4.082 without any modifications.
* This file was taken from RakNet 4.082.
* Please see licenses/RakNet license.txt for the underlying license and related copyright.
*
*
* Modified work: Copyright (c) 2018, SLikeSoft UG (haftungsbeschränkt)
*
* This source code was modified by SLikeSoft. Modifications are licensed under the MIT-style
* license found in the license.txt file in the root directory of this source tree.
*/

using System;
Expand Down Expand Up @@ -30,7 +36,7 @@ static void Main(string[] args)
{
RakString dllCallTest = new RakString();
}
catch (Exception e)
catch (Exception)
{
Console.WriteLine("DLL issue\nAdd SwigOutput/CplusDLLIncludes/RakNetWrap.cxx to the project\nDLL_Swig/RakNet.sln and rebuild.\nPress enter to quit.");
Console.Read();
Expand Down
Binary file modified Help/Doxygen/SLikeNetManual.chm
Binary file not shown.
4 changes: 2 additions & 2 deletions Help/Doxygen/html/annotated.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -392,7 +392,7 @@ $(document).ready(function(){initNavTree('annotated.xhtml','');});
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Sat May 5 2018 17:33:31 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:50 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions Help/Doxygen/html/classes.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -204,7 +204,7 @@ $(document).ready(function(){initNavTree('classes.xhtml','');});
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Sat May 5 2018 17:33:31 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:50 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
8 changes: 4 additions & 4 deletions Help/Doxygen/html/d0/d0c/_d_s___table_8cpp.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -168,7 +168,7 @@ Variables</h2></td></tr>

<p>Definition at line <a class="el" href="../../d0/d0c/_d_s___table_8cpp_source.xhtml#l00027">27</a> of file <a class="el" href="../../d0/d0c/_d_s___table_8cpp_source.xhtml">DS_Table.cpp</a>.</p>

<p>References <a class="el" href="../../d8/db0/defines_8h_source.xhtml#l00042">_FILE_AND_LINE_</a>, <a class="el" href="../../d3/d5d/_d_s___table_8h_source.xhtml#l00129">DataStructures::Table::Row::cells</a>, and <a class="el" href="../../d9/d7f/_d_s___list_8h_source.xhtml#l00248">DataStructures::List&lt; list_type &gt;::Insert()</a>.</p>
<p>References <a class="el" href="../../d8/db0/defines_8h_source.xhtml#l00047">_FILE_AND_LINE_</a>, <a class="el" href="../../d3/d5d/_d_s___table_8h_source.xhtml#l00129">DataStructures::Table::Row::cells</a>, and <a class="el" href="../../d9/d7f/_d_s___list_8h_source.xhtml#l00248">DataStructures::List&lt; list_type &gt;::Insert()</a>.</p>

<p>Referenced by <a class="el" href="../../d0/d0c/_d_s___table_8cpp_source.xhtml#l00291">DataStructures::Table::AddColumn()</a>.</p>

Expand Down Expand Up @@ -200,7 +200,7 @@ Variables</h2></td></tr>

<p>Definition at line <a class="el" href="../../d0/d0c/_d_s___table_8cpp_source.xhtml#l00032">32</a> of file <a class="el" href="../../d0/d0c/_d_s___table_8cpp_source.xhtml">DS_Table.cpp</a>.</p>

<p>References <a class="el" href="../../d8/db0/defines_8h_source.xhtml#l00042">_FILE_AND_LINE_</a>, <a class="el" href="../../d3/d5d/_d_s___table_8h_source.xhtml#l00129">DataStructures::Table::Row::cells</a>, <a class="el" href="../../dd/dc5/memoryoverride_8h_source.xhtml#l00182">SLNet::OP_DELETE()</a>, and <a class="el" href="../../d9/d7f/_d_s___list_8h_source.xhtml#l00450">DataStructures::List&lt; list_type &gt;::Size()</a>.</p>
<p>References <a class="el" href="../../d8/db0/defines_8h_source.xhtml#l00047">_FILE_AND_LINE_</a>, <a class="el" href="../../d3/d5d/_d_s___table_8h_source.xhtml#l00129">DataStructures::Table::Row::cells</a>, <a class="el" href="../../dd/dc5/memoryoverride_8h_source.xhtml#l00182">SLNet::OP_DELETE()</a>, and <a class="el" href="../../d9/d7f/_d_s___list_8h_source.xhtml#l00450">DataStructures::List&lt; list_type &gt;::Size()</a>.</p>

<p>Referenced by <a class="el" href="../../d0/d0c/_d_s___table_8cpp_source.xhtml#l01073">DataStructures::Table::Clear()</a>.</p>

Expand Down Expand Up @@ -339,7 +339,7 @@ Variables</h2></td></tr>
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_74389ed8173ad57b461b9d623a1f3867.xhtml">Source</a></li><li class="navelem"><a class="el" href="../../dir_d1eb22c2ecfd8b50f59e9cbaf8260105.xhtml">src</a></li><li class="navelem"><a class="el" href="../../d0/d0c/_d_s___table_8cpp.xhtml">DS_Table.cpp</a></li>
<li class="footer">Generated on Sat May 5 2018 17:33:28 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:48 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions Help/Doxygen/html/d0/d0c/_d_s___table_8cpp_source.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -1260,7 +1260,7 @@ $(document).ready(function(){initNavTree('d0/d0c/_d_s___table_8cpp_source.xhtml'
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_74389ed8173ad57b461b9d623a1f3867.xhtml">Source</a></li><li class="navelem"><a class="el" href="../../dir_d1eb22c2ecfd8b50f59e9cbaf8260105.xhtml">src</a></li><li class="navelem"><a class="el" href="../../d0/d0c/_d_s___table_8cpp.xhtml">DS_Table.cpp</a></li>
<li class="footer">Generated on Sat May 5 2018 17:33:25 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:47 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions Help/Doxygen/html/d0/d18/_relay_plugin_8cpp.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -115,7 +115,7 @@ $(document).ready(function(){initNavTree('d0/d18/_relay_plugin_8cpp.xhtml','../.
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_74389ed8173ad57b461b9d623a1f3867.xhtml">Source</a></li><li class="navelem"><a class="el" href="../../dir_d1eb22c2ecfd8b50f59e9cbaf8260105.xhtml">src</a></li><li class="navelem"><a class="el" href="../../d0/d18/_relay_plugin_8cpp.xhtml">RelayPlugin.cpp</a></li>
<li class="footer">Generated on Sat May 5 2018 17:33:28 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:48 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions Help/Doxygen/html/d0/d18/_relay_plugin_8cpp_source.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -549,7 +549,7 @@ $(document).ready(function(){initNavTree('d0/d18/_relay_plugin_8cpp_source.xhtml
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_74389ed8173ad57b461b9d623a1f3867.xhtml">Source</a></li><li class="navelem"><a class="el" href="../../dir_d1eb22c2ecfd8b50f59e9cbaf8260105.xhtml">src</a></li><li class="navelem"><a class="el" href="../../d0/d18/_relay_plugin_8cpp.xhtml">RelayPlugin.cpp</a></li>
<li class="footer">Generated on Sat May 5 2018 17:33:26 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:47 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
4 changes: 2 additions & 2 deletions Help/Doxygen/html/d0/d1e/_nat_punchthrough_client_8h.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -160,7 +160,7 @@ Namespaces</h2></td></tr>
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_74389ed8173ad57b461b9d623a1f3867.xhtml">Source</a></li><li class="navelem"><a class="el" href="../../dir_bbb90e3ef9167a594ae33323139a2595.xhtml">include</a></li><li class="navelem"><a class="el" href="../../dir_88467e66686deb9d3756fe4fc298e321.xhtml">slikenet</a></li><li class="navelem"><a class="el" href="../../d0/d1e/_nat_punchthrough_client_8h.xhtml">NatPunchthroughClient.h</a></li>
<li class="footer">Generated on Sat May 5 2018 17:33:27 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:48 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -367,7 +367,7 @@ $(document).ready(function(){initNavTree('d0/d1e/_nat_punchthrough_client_8h_sou
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_74389ed8173ad57b461b9d623a1f3867.xhtml">Source</a></li><li class="navelem"><a class="el" href="../../dir_bbb90e3ef9167a594ae33323139a2595.xhtml">include</a></li><li class="navelem"><a class="el" href="../../dir_88467e66686deb9d3756fe4fc298e321.xhtml">slikenet</a></li><li class="navelem"><a class="el" href="../../d0/d1e/_nat_punchthrough_client_8h.xhtml">NatPunchthroughClient.h</a></li>
<li class="footer">Generated on Sat May 5 2018 17:33:24 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:46 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -134,7 +134,7 @@ $(document).ready(function(){initNavTree('d3/da8/struct_s_l_net_1_1_address_or_g
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Sat May 5 2018 17:33:31 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:50 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SLikeNet
&#160;<span id="projectnumber">0.1.2</span>
&#160;<span id="projectnumber">0.1.3</span>
</div>
</td>
</tr>
Expand Down Expand Up @@ -126,7 +126,7 @@ $(document).ready(function(){initNavTree('d2/d30/class_s_l_net_1_1_f_l_p___print
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Sat May 5 2018 17:33:30 for SLikeNet by
<li class="footer">Generated on Wed Aug 14 2019 22:09:49 for SLikeNet by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.2 </li>
</ul>
Expand Down
Loading

0 comments on commit 351981f

Please sign in to comment.