Added class ObjectBinder for common data binding.

This commit is contained in:
2016-04-13 21:34:49 +02:00
parent c3397c779b
commit 049314a245
6 changed files with 165 additions and 76 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "shopservice.h"
ShopService::ShopService()
{
}
+11
View File
@@ -0,0 +1,11 @@
#ifndef SHOPSERVICE_H
#define SHOPSERVICE_H
class ShopService
{
public:
ShopService();
};
#endif // SHOPSERVICE_H