二期c++接口

Dependencies:   EthernetInterface mbed-rtos mbed uniqueCPUID

Fork of bcsdk by Heng Well

Revision:
8:f2a567ee3a46
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Query.h	Thu Sep 21 02:09:04 2017 +0000
@@ -0,0 +1,33 @@
+/***********************************************************************
+ * Module:  Query.h
+ * Author:  Administrator
+ * Modified: 2017Äê8ÔÂ31ÈÕ 16:36:12
+ * Purpose: Declaration of the class Query
+ * Comment: ´æ´¢ÓÃÓÚÔÚÁ´ºËÐÄÉÏÖ´ÐÐÏî²éѯµÄÐÅÏ¢¡£
+ ***********************************************************************/
+
+#if !defined(__Account_Query_h)
+#define __Account_Query_h
+
+class Query
+{
+public:
+   Query();
+
+   std::string filter;
+   list<Object> filterParams;
+   bool ascendingWithLongPoll;
+   long timeout;
+   std::string after;
+   long startTime;
+   long endTime;
+   long timestamp;
+   list<std::string> sumBy;
+   list<std::string> aliases;
+
+protected:
+private:
+
+};
+
+#endif