Add some constants that show the version of the library 75/25175/4
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Wed, 30 Jul 2014 16:09:11 +0000 (17:09 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Thu, 31 Jul 2014 10:52:34 +0000 (11:52 +0100)
Change-Id: Ibc32649fe2570a16908a502ea7366c31425ae961

adaptors/common/dali-adaptor-version.cpp [new file with mode: 0644]
adaptors/common/file.list
adaptors/public-api/dali-adaptor-version.h [new file with mode: 0644]
adaptors/public-api/dali.h
adaptors/public-api/file.list

diff --git a/adaptors/common/dali-adaptor-version.cpp b/adaptors/common/dali-adaptor-version.cpp
new file mode 100644 (file)
index 0000000..2b00d99
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ *
+ * 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.
+ *
+ */
+
+// HEADER
+#include <dali-adaptor-version.h>
+
+// EXTERNAL INCLUDES
+#ifdef DEBUG_ENABLED
+#include <iostream>
+#endif
+
+namespace Dali
+{
+
+const unsigned int ADAPTOR_MAJOR_VERSION = 1;
+const unsigned int ADAPTOR_MINOR_VERSION = 0;
+const unsigned int ADAPTOR_MICRO_VERSION = 1;
+const char * const ADAPTOR_BUILD_DATE    = __DATE__ " " __TIME__;
+
+#ifdef DEBUG_ENABLED
+namespace
+{
+/// Allows the printing of the version number ONLY when debug is enabled
+struct PrintVersion
+{
+  PrintVersion()
+  {
+    std::cout << "DALi Adaptor:   " << ADAPTOR_MAJOR_VERSION << "." << ADAPTOR_MINOR_VERSION << "." << ADAPTOR_MICRO_VERSION << " (" << ADAPTOR_BUILD_DATE << ")" << std::endl;
+  }
+};
+PrintVersion ADAPTOR_VERSION;
+} // unnamed namespace
+#endif
+
+} // namespace Dali
index 0e8243a..d0f0265 100644 (file)
@@ -6,6 +6,7 @@ adaptor_common_src_files = \
   $(adaptor_common_dir)/color-controller.cpp \
   $(adaptor_common_dir)/clipboard.cpp \
   $(adaptor_common_dir)/clipboard-event-notifier.cpp \
+  $(adaptor_common_dir)/dali-adaptor-version.cpp \
   $(adaptor_common_dir)/device-layout.cpp \
   $(adaptor_common_dir)/drag-and-drop-detector.cpp \
   $(adaptor_common_dir)/event-feeder.cpp \
diff --git a/adaptors/public-api/dali-adaptor-version.h b/adaptors/public-api/dali-adaptor-version.h
new file mode 100644 (file)
index 0000000..0a3668f
--- /dev/null
@@ -0,0 +1,29 @@
+#ifndef __DALI_ADAPTOR_VERSION_H__
+#define __DALI_ADAPTOR_VERSION_H__
+
+/*
+ * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ *
+ * 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.
+ *
+ */
+
+namespace Dali
+{
+extern const unsigned int ADAPTOR_MAJOR_VERSION; ///< The major version number of the Adaptor.
+extern const unsigned int ADAPTOR_MINOR_VERSION; ///< The minor version number of the Adaptor.
+extern const unsigned int ADAPTOR_MICRO_VERSION; ///< The micro version number of the Adaptor.
+extern const char * const ADAPTOR_BUILD_DATE;    ///< The date/time the Adaptor library was built.
+} // namespace Dali
+
+#endif // __DALI_ADAPTOR_VERSION_H__
index 8608147..b0cc40f 100644 (file)
@@ -56,4 +56,6 @@
 #include <dali/public-api/physical-keyboard.h>
 #include <dali/public-api/tilt-sensor.h>
 
+#include <dali/public-api/dali-adaptor-version.h>
+
 #endif //__DALI_H__
index 729a2e1..15dab9d 100644 (file)
@@ -30,4 +30,5 @@ public_api_application_header_files = \
   $(adaptor_public_api_dir)/application.h 
 
 adaptor_dali_header_file = \
-  $(adaptor_public_api_dir)/dali.h
+  $(adaptor_public_api_dir)/dali.h \
+  $(adaptor_public_api_dir)/dali-adaptor-version.h