Add magic protocol codes 94/72394/8
authorOskar Świtalski <o.switalski@samsung.com>
Tue, 31 May 2016 16:24:17 +0000 (18:24 +0200)
committerOskar Świtalski <o.switalski@samsung.com>
Fri, 10 Jun 2016 10:25:14 +0000 (12:25 +0200)
Change-Id: I9b7d1b1174f6fc467b77244012664d606693b5ae

src/common/types/Protocol.h [new file with mode: 0644]

diff --git a/src/common/types/Protocol.h b/src/common/types/Protocol.h
new file mode 100644 (file)
index 0000000..dafd277
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ *  Copyright (c) 2016 Samsung Electronics Co.
+ *
+ *  Licensed 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
+ */
+/**
+ * @file        src/common/types/Protocol.h
+ * @author      Oskar Świtalski <o.switalski@samsung.com>
+ * @brief       Definition of common types and consts
+ */
+
+#pragma once
+
+#include <cstdint>
+
+namespace AskUser {
+namespace Protocol {
+
+constexpr uint8_t dissmisCode = 0xDE;
+constexpr uint8_t ackCode = 0xAC;
+
+} // namespace Protocol
+} // namespace AskUser