mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Serialisation: Add basic utilities to facilitate conversion to/from JSON with minimal boilerplate
This commit is contained in:
parent
1bc90055b9
commit
56195d1053
48 changed files with 2057 additions and 28 deletions
|
|
@ -353,6 +353,9 @@
|
|||
<ClCompile Include="..\..\..\..\modules\juce_core\javascript\juce_JSON.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_core\javascript\juce_JSONSerialisation_test.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\modules\juce_core\logging\juce_FileLogger.cpp">
|
||||
<ExcludedFromBuild>true</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
|
|
@ -1600,7 +1603,9 @@
|
|||
</ClCompile>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\BinaryData.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_build_tools.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_core.cpp">
|
||||
<AdditionalOptions> /bigobj %(AdditionalOptions)</AdditionalOptions>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_cryptography.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_data_structures.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_events.cpp"/>
|
||||
|
|
@ -1815,6 +1820,7 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_core\files\juce_WildcardFileFilter.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\javascript\juce_Javascript.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\javascript\juce_JSON.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\javascript\juce_JSONSerialisation.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\logging\juce_FileLogger.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\logging\juce_Logger.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\maths\juce_BigInteger.h"/>
|
||||
|
|
@ -1864,6 +1870,7 @@
|
|||
<ClInclude Include="..\..\..\..\modules\juce_core\network\juce_Socket.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\network\juce_URL.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\network\juce_WebInputStream.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\serialisation\juce_Serialisation.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\streams\juce_AndroidDocumentInputSource.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\streams\juce_BufferedInputStream.h"/>
|
||||
<ClInclude Include="..\..\..\..\modules\juce_core\streams\juce_FileInputSource.h"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue