Github user jsoref commented on a diff in the pull request:

    
https://github.com/apache/cordova-plugin-globalization/pull/18#discussion_r15602968
  
    --- Diff: src/blackberry10/native/public/json/writer.h ---
    @@ -0,0 +1,174 @@
    +#ifndef JSON_WRITER_H_INCLUDED
    +# define JSON_WRITER_H_INCLUDED
    +
    +# include "value.h"
    +# include <vector>
    +# include <string>
    +# include <iostream>
    +
    +namespace Json {
    +
    +   class Value;
    +
    +   /** \brief Abstract class for writers.
    +    */
    +   class JSON_API Writer
    +   {
    +   public:
    +      virtual ~Writer();
    +
    +      virtual std::string write( const Value &root ) = 0;
    +   };
    +
    +   /** \brief Outputs a Value in <a HREF="http://www.json.org";>JSON</a> 
format without formatting (not human friendly).
    +    *
    +    * The JSON document is written in a single line. It is not intended 
for 'human' consumption,
    +    * but may be usefull to support feature such as RPC where bandwith is 
limited.
    +    * \sa Reader, Value
    +    */
    +   class JSON_API FastWriter : public Writer
    +   {
    +   public:
    +      FastWriter();
    +      virtual ~FastWriter(){}
    +
    +      void enableYAMLCompatibility();
    +
    +   public: // overridden from Writer
    +      virtual std::string write( const Value &root );
    +
    +   private:
    +      void writeValue( const Value &value );
    +
    +      std::string document_;
    +      bool yamlCompatiblityEnabled_;
    --- End diff --
    
    sp: Compatiblity


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to