Skip to content

Solant/cascade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cascade

Build Status Build Status

Cascade is library for serialization and deserialization of QObjects and Gadgets.

Usage example:

// Gadget.h
#include <QObject>

class PlainGadget {
    Q_GADGET

    Q_PROPERTY(int propInt MEMBER propInt)
    Q_PROPERTY(QString propString MEMBER propString)
    Q_PROPERTY(bool propBool MEMBER propBool)

public:
    int propInt = 0;
    QString propString = 0;
    bool propBool = 0;
};


// main.cpp
#include "cascade.h"

auto json = QJsonObject {
        {"propInt", 1},
        {"propString", "qwerty"},
        {"propBool", true},
    };
auto result = Cascade::from<PlainGadget>(json);
// result.propInt == 1
// result.propString == "qwerty"
// result.propBool == true