Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krypten/templex
https://github.com/krypten/templex
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/krypten/templex
- Owner: krypten
- Created: 2015-03-30T17:58:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-30T18:06:32.000Z (over 9 years ago)
- Last Synced: 2024-04-16T08:46:14.098Z (7 months ago)
- Language: C++
- Size: 5.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TempleX
---------## Introduction
This is project currently converting XML file or input to JSON format and vice versa.## Working Code
- Utility function for converting JSON to XML
ConvertUtil::convertXML2JSON(TEXT xmlInput, Parser::ParseInputType inputType, JsonObject& outNode, bool& error);- Utility function for converting JSON to XML
ConvertUtil::convertJSON2XML(TEXT jsonInput, Parser::ParseInputType inputType, Node& outNode, bool& error);For Example :
bool error;
Node node;
ConvertUtil::convertJSON2XML("Data/demo.json", Parser::ParseInputType::FILE, node, error);## Futute Work
The intial aim of the project was to create dynamic OpenGL objects using popular file formats. This will make the process of creating OpenGL objects every easy. Intial draft has to use svg and json format and create OpenGL objects based on the data provided as input.## ToDo
Testing the functionality of XML to Model and Model to XML.
Testing the functionality of JSON to Model and Model to JSON.Printing the XML and JSON [converting to Strings / toString() function]
Error Handling to be supported by code.
FIX :
fix parsing map for multiple values.
fix create output files in build folder
Map or pair to be used in JsonMap ;;;;;; to be decided.