You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tubemq.apache.org by gx...@apache.org on 2020/09/15 11:46:17 UTC

[incubator-tubemq] 01/50: [TUBEMQ-250] Create C/C++ configure files (#170)

This is an automated email from the ASF dual-hosted git repository.

gxcheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tubemq.git

commit cf0ccc0898876adc4834de4272995a0272d6fac6
Author: gosonzhang <46...@qq.com>
AuthorDate: Wed Jun 24 06:15:10 2020 +0000

    [TUBEMQ-250] Create C/C++ configure files (#170)
    
    Co-authored-by: gosonzhang <go...@tencent.com>
---
 .../tubemq-client-cpp/inc/TubeClientConfig.h       | 59 ++++++++++++++++++++++
 .../tubemq-client-cpp/src/TubeClientConfig.cpp     | 39 ++++++++++++++
 2 files changed, 98 insertions(+)

diff --git a/tubemq-client-twins/tubemq-client-cpp/inc/TubeClientConfig.h b/tubemq-client-twins/tubemq-client-cpp/inc/TubeClientConfig.h
new file mode 100644
index 0000000..97f5978
--- /dev/null
+++ b/tubemq-client-twins/tubemq-client-cpp/inc/TubeClientConfig.h
@@ -0,0 +1,59 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+ 
+#ifndef _TUBEMQ_CLIENT_CONFIGURE_H_
+#define _TUBEMQ_CLIENT_CONFIGURE_H_
+
+#include <string>
+#include <stdio.h>
+
+
+
+
+namespace TubeMQ {
+
+    using namespace std;
+
+    class TubeConsumerConfig
+       public:
+            TubeConsumerConfig();
+
+    };
+{
+		
+ 
+}
+
+
+#endif
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tubemq-client-twins/tubemq-client-cpp/src/TubeClientConfig.cpp b/tubemq-client-twins/tubemq-client-cpp/src/TubeClientConfig.cpp
new file mode 100644
index 0000000..91107fc
--- /dev/null
+++ b/tubemq-client-twins/tubemq-client-cpp/src/TubeClientConfig.cpp
@@ -0,0 +1,39 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+ 
+#include "TubeClientConfig.h"
+
+
+namespace TubeMQ {
+
+
+TubeConsumerConfig::TubeConsumerConfig()
+{
+
+}
+
+TubeConsumerConfig::~TubeConsumerConfig()
+{
+
+}
+
+
+
+}
+