- 授权协议: GPLv3
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/rita-marylin-raquel/softbloks
- 软件文档: https://github.com/rita-marylin-raquel/softbloks
软件介绍
Softbloks 是一款免费的跨平台的应用框架,为开发者提供一个有效的开发模式,自下而上或者自上而下,提高开发效率。
示例代码:
class MainObject : public sb::AbstractSoft
{
public:
MainObject()
{
// 1) register the property Qt.mainview in read-only mode
// - the method get_widget is passed as reading accessor (std::bind is
// used to convert the method into a std::function bound to this)
// - empty value (nullptr) is passed as writing accessor
this->register_property<QWidget*>(
"Qt.mainview",
sb::READ_ONLY,
std::bind(&MySoft::get_widget, this),
nullptr
);
}
QWidget* get_widget()
{
return new QLabel("Hello World!!!");
}
};
SB_DECLARE_CLASS(
MainObject,
"MainObject",
sb::AbstractSoft
)
// 2) declare the properties of the class
SB_DECLARE_PROPERTIES(
MainObject,
{"Qt.mainview", {typeid(QWidget*), sb::READ_ONLY}}
)
SB_DECLARE_MODULE(/*a description should go here*/)
{
sb::register_object<MainObject>();
}
一本书读懂大数据
黄颖 / 吉林出版集团有限责任公司 / 2014-12-1
进入大数据时代,让数据开口说话将成为司空见惯的事情,书中将从大数据时代的前因后果讲起,全面分析大数据时代的特征、企业实践的案例、大数据的发展方向、未来的机遇和挑战等内容,展现一个客观立体、自由开放的大数据时代。一起来看看 《一本书读懂大数据》 这本书的介绍吧!
