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
|
|
@ -1158,6 +1158,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>
|
||||
|
|
@ -2554,7 +2557,9 @@
|
|||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_processors_ara.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_processors_lv2_libs.cpp"/>
|
||||
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_utils.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_dsp.cpp"/>
|
||||
|
|
@ -3062,6 +3067,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"/>
|
||||
|
|
@ -3111,6 +3117,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