From: Grzegorz Krawczyk Date: Fri, 2 Nov 2012 12:41:34 +0000 (+0100) Subject: Additional Include: stddef.h X-Git-Tag: 2.1b_release~6^2~158 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e63e80198e785da1507d3decb9ff0a2c0d57433;p=framework%2Fweb%2Fwrt-commons.git Additional Include: stddef.h Due to changes in toolchain it is neccessary to include stddef.h [Issue#] Possible build break on 5th of November [Feature] N/A [Cause] Toolchain change [Solution] include header [Verification] Successful compilation Change-Id: I0e681bf73c94a967d3355ba3063edfd3ba24b4ec --- diff --git a/3rdparty/fastdelegate/Demo.cpp b/3rdparty/fastdelegate/Demo.cpp index 2b4d6f6..93720f9 100644 --- a/3rdparty/fastdelegate/Demo.cpp +++ b/3rdparty/fastdelegate/Demo.cpp @@ -1,3 +1,4 @@ +#include #include #include "FastDelegate.h" // Demonstrate the syntax for FastDelegates. diff --git a/examples/binary_queue/binary_queue.cpp b/examples/binary_queue/binary_queue.cpp index a978a6d..063b6af 100644 --- a/examples/binary_queue/binary_queue.cpp +++ b/examples/binary_queue/binary_queue.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of binary queue example */ +#include #include #include #include diff --git a/examples/copy/copy.cpp b/examples/copy/copy.cpp index 1ab7607..5fa9484 100644 --- a/examples/copy/copy.cpp +++ b/examples/copy/copy.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of copy example */ +#include #include #include #include diff --git a/examples/crypto_hash/crypto_hash.cpp b/examples/crypto_hash/crypto_hash.cpp index 0fffefa..791b971 100644 --- a/examples/crypto_hash/crypto_hash.cpp +++ b/examples/crypto_hash/crypto_hash.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of crypto hash example */ +#include #include #include #include diff --git a/examples/dbus/client-example/client-example.cpp b/examples/dbus/client-example/client-example.cpp index 964333e..878febf 100644 --- a/examples/dbus/client-example/client-example.cpp +++ b/examples/dbus/client-example/client-example.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief Implementation for simple echo service DBus client. */ - +#include #include #include diff --git a/examples/dbus/server-example/server-example.cpp b/examples/dbus/server-example/server-example.cpp index 3a54d2a..a733c70 100644 --- a/examples/dbus/server-example/server-example.cpp +++ b/examples/dbus/server-example/server-example.cpp @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - +#include #include #include #include diff --git a/examples/fake_rpc/fake_rpc.cpp b/examples/fake_rpc/fake_rpc.cpp index 9750c62..bbf8c7d 100644 --- a/examples/fake_rpc/fake_rpc.cpp +++ b/examples/fake_rpc/fake_rpc.cpp @@ -20,7 +20,7 @@ * @version 1.0 * @brief This file is the implementation file of RPC example */ - +#include #include #include #include diff --git a/examples/metronome/metronome_client.cpp b/examples/metronome/metronome_client.cpp index 2411d09..6f97652 100644 --- a/examples/metronome/metronome_client.cpp +++ b/examples/metronome/metronome_client.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of metronome client example */ +#include #include #include #include diff --git a/examples/metronome/metronome_server.cpp b/examples/metronome/metronome_server.cpp index 7efa458..508f61d 100644 --- a/examples/metronome/metronome_server.cpp +++ b/examples/metronome/metronome_server.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of metronome server example */ +#include #include #include #include diff --git a/examples/rpc/rpc.cpp b/examples/rpc/rpc.cpp index 833a20f..cacc491 100644 --- a/examples/rpc/rpc.cpp +++ b/examples/rpc/rpc.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of RPC example */ +#include #include #include #include diff --git a/examples/simple/simple.cpp b/examples/simple/simple.cpp index e09af81..6da8409 100644 --- a/examples/simple/simple.cpp +++ b/examples/simple/simple.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of simple example */ +#include #include int main(int argc, char *argv[]) diff --git a/examples/single_instance/single_instance.cpp b/examples/single_instance/single_instance.cpp index cadb4f4..038594b 100644 --- a/examples/single_instance/single_instance.cpp +++ b/examples/single_instance/single_instance.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of single instance example */ +#include #include #include diff --git a/examples/socket/socket.cpp b/examples/socket/socket.cpp index c8a2894..fca68ab 100644 --- a/examples/socket/socket.cpp +++ b/examples/socket/socket.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of socket example */ +#include #include #include #include diff --git a/examples/tcpsock/tcpsock.cpp b/examples/tcpsock/tcpsock.cpp index c2697cd..1bae958 100644 --- a/examples/tcpsock/tcpsock.cpp +++ b/examples/tcpsock/tcpsock.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of tcpsock example */ +#include #include #include #include diff --git a/examples/timed_event/timed_event.cpp b/examples/timed_event/timed_event.cpp index 28c74a4..4e32cef 100644 --- a/examples/timed_event/timed_event.cpp +++ b/examples/timed_event/timed_event.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of timed event example */ +#include #include #include #include diff --git a/modules/auto_save_dao/dao/AutoSaveDatabase.cpp b/modules/auto_save_dao/dao/AutoSaveDatabase.cpp index d4bc789..16813c9 100644 --- a/modules/auto_save_dao/dao/AutoSaveDatabase.cpp +++ b/modules/auto_save_dao/dao/AutoSaveDatabase.cpp @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - +#include #include using namespace AutoSaveDB; diff --git a/modules/auto_save_dao/dao/auto_save_dao.cpp b/modules/auto_save_dao/dao/auto_save_dao.cpp index e8f9e82..9c811a9 100644 --- a/modules/auto_save_dao/dao/auto_save_dao.cpp +++ b/modules/auto_save_dao/dao/auto_save_dao.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file contains the definition of auto save dao class. */ - +#include #include #include #include diff --git a/modules/auto_save_dao/dao/auto_save_dao_read_only.cpp b/modules/auto_save_dao/dao/auto_save_dao_read_only.cpp index a134fab..28e0bb6 100644 --- a/modules/auto_save_dao/dao/auto_save_dao_read_only.cpp +++ b/modules/auto_save_dao/dao/auto_save_dao_read_only.cpp @@ -21,7 +21,7 @@ * @version 1.0 * @brief This file contains the declaration of auto save dao */ - +#include #include #include #include diff --git a/modules/auto_save_dao/dao/common_dao_types.cpp b/modules/auto_save_dao/dao/common_dao_types.cpp index d816753..0eb25c5 100644 --- a/modules/auto_save_dao/dao/common_dao_types.cpp +++ b/modules/auto_save_dao/dao/common_dao_types.cpp @@ -21,7 +21,7 @@ * @brief This file contains the implementation of * common data types for autoSavedb */ - +#include #include #include diff --git a/modules/core/include/dpl/shared_ptr.h b/modules/core/include/dpl/shared_ptr.h index c964fd9..d2fc91d 100644 --- a/modules/core/include/dpl/shared_ptr.h +++ b/modules/core/include/dpl/shared_ptr.h @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include namespace DPL diff --git a/modules/core/src/abstract_waitable_input_adapter.cpp b/modules/core/src/abstract_waitable_input_adapter.cpp index e7964ea..9de97d5 100644 --- a/modules/core/src/abstract_waitable_input_adapter.cpp +++ b/modules/core/src/abstract_waitable_input_adapter.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract waitable input adapter */ +#include #include namespace DPL diff --git a/modules/core/src/abstract_waitable_input_output_adapter.cpp b/modules/core/src/abstract_waitable_input_output_adapter.cpp index d07737b..e6f3a0f 100644 --- a/modules/core/src/abstract_waitable_input_output_adapter.cpp +++ b/modules/core/src/abstract_waitable_input_output_adapter.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract waitable input output adapter */ +#include #include namespace DPL diff --git a/modules/core/src/abstract_waitable_output_adapter.cpp b/modules/core/src/abstract_waitable_output_adapter.cpp index f849579..f3cf9cb 100644 --- a/modules/core/src/abstract_waitable_output_adapter.cpp +++ b/modules/core/src/abstract_waitable_output_adapter.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract waitable output adapter */ +#include #include namespace DPL diff --git a/modules/core/src/address.cpp b/modules/core/src/address.cpp index 624fe7e..52a1c78 100644 --- a/modules/core/src/address.cpp +++ b/modules/core/src/address.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of address */ +#include #include #include #include diff --git a/modules/core/src/application.cpp b/modules/core/src/application.cpp index f4a2147..d25e5ad 100644 --- a/modules/core/src/application.cpp +++ b/modules/core/src/application.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of MVC application support */ +#include #include #include diff --git a/modules/core/src/apply.cpp b/modules/core/src/apply.cpp index d299b57..7ba5180 100644 --- a/modules/core/src/apply.cpp +++ b/modules/core/src/apply.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of apply functionality */ +#include #include // diff --git a/modules/core/src/assert.cpp b/modules/core/src/assert.cpp index 9a363dc..e3e4f82 100644 --- a/modules/core/src/assert.cpp +++ b/modules/core/src/assert.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of assert */ +#include #include #include #include diff --git a/modules/core/src/atomic.cpp b/modules/core/src/atomic.cpp index f61a4dd..cb5a585 100644 --- a/modules/core/src/atomic.cpp +++ b/modules/core/src/atomic.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of atomic */ +#include #include namespace DPL diff --git a/modules/core/src/binary_queue.cpp b/modules/core/src/binary_queue.cpp index 42b351e..3efecd0 100644 --- a/modules/core/src/binary_queue.cpp +++ b/modules/core/src/binary_queue.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of binary queue */ +#include #include #include #include diff --git a/modules/core/src/char_traits.cpp b/modules/core/src/char_traits.cpp index 13ea72e..6e4bec8 100644 --- a/modules/core/src/char_traits.cpp +++ b/modules/core/src/char_traits.cpp @@ -20,6 +20,7 @@ * @biref Char traits are used to create basic_string extended with additional features * Current char traits could be extended in feature to boost performance */ +#include #include // diff --git a/modules/core/src/colors.cpp b/modules/core/src/colors.cpp index 19e6d3a..fc0f2e2 100644 --- a/modules/core/src/colors.cpp +++ b/modules/core/src/colors.cpp @@ -20,7 +20,7 @@ * @brief Some constants with definition of colors for Console * and html output */ - +#include #include diff --git a/modules/core/src/copy.cpp b/modules/core/src/copy.cpp index 465a9b9..a302fb8 100644 --- a/modules/core/src/copy.cpp +++ b/modules/core/src/copy.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of copy */ +#include #include #include #include diff --git a/modules/core/src/errno_string.cpp b/modules/core/src/errno_string.cpp index 1637d87..24b9b5a 100644 --- a/modules/core/src/errno_string.cpp +++ b/modules/core/src/errno_string.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of errno string */ +#include #include #include #include diff --git a/modules/core/src/exception.cpp b/modules/core/src/exception.cpp index 9d6de98..ea6624e 100644 --- a/modules/core/src/exception.cpp +++ b/modules/core/src/exception.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation of exception system */ +#include #include #include #include diff --git a/modules/core/src/fast_delegate.cpp b/modules/core/src/fast_delegate.cpp index 94b3ca3..70821b2 100644 --- a/modules/core/src/fast_delegate.cpp +++ b/modules/core/src/fast_delegate.cpp @@ -19,4 +19,5 @@ * @version 1.0 * @brief This file is the implementation file of fast delegate */ +#include #include diff --git a/modules/core/src/file_input.cpp b/modules/core/src/file_input.cpp index 6e536db..e51644d 100644 --- a/modules/core/src/file_input.cpp +++ b/modules/core/src/file_input.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of named input pipe */ +#include #include #include #include diff --git a/modules/core/src/file_output.cpp b/modules/core/src/file_output.cpp index 8b09042..3106e17 100644 --- a/modules/core/src/file_output.cpp +++ b/modules/core/src/file_output.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of file output */ +#include #include #include #include diff --git a/modules/core/src/generic_event.cpp b/modules/core/src/generic_event.cpp index 3ad97c4..f09ff2b 100644 --- a/modules/core/src/generic_event.cpp +++ b/modules/core/src/generic_event.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of MVC generic event */ +#include #include // diff --git a/modules/core/src/lexical_cast.cpp b/modules/core/src/lexical_cast.cpp index 1d9ad17..a89abc9 100644 --- a/modules/core/src/lexical_cast.cpp +++ b/modules/core/src/lexical_cast.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Implementation file for lexical cast */ +#include #include // diff --git a/modules/core/src/main.cpp b/modules/core/src/main.cpp index 0268d6f..9b4455a 100644 --- a/modules/core/src/main.cpp +++ b/modules/core/src/main.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of main for EFL */ +#include #include #include #include diff --git a/modules/core/src/mutex.cpp b/modules/core/src/mutex.cpp index 7d18eda..6a7fd99 100644 --- a/modules/core/src/mutex.cpp +++ b/modules/core/src/mutex.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of mutex */ +#include #include #include #include diff --git a/modules/core/src/named_base_pipe.cpp b/modules/core/src/named_base_pipe.cpp index 6d18bc6..f582000 100644 --- a/modules/core/src/named_base_pipe.cpp +++ b/modules/core/src/named_base_pipe.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of named base pipe */ +#include #include #include #include diff --git a/modules/core/src/named_input_pipe.cpp b/modules/core/src/named_input_pipe.cpp index bda52f2..f5f4538 100644 --- a/modules/core/src/named_input_pipe.cpp +++ b/modules/core/src/named_input_pipe.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of named input pipe */ +#include #include #include #include diff --git a/modules/core/src/named_output_pipe.cpp b/modules/core/src/named_output_pipe.cpp index 5dd7215..df9b03e 100644 --- a/modules/core/src/named_output_pipe.cpp +++ b/modules/core/src/named_output_pipe.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of named output pipe */ +#include #include #include #include diff --git a/modules/core/src/noncopyable.cpp b/modules/core/src/noncopyable.cpp index d0af48a..48aff28 100644 --- a/modules/core/src/noncopyable.cpp +++ b/modules/core/src/noncopyable.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of noncopyable */ +#include #include namespace DPL diff --git a/modules/core/src/once.cpp b/modules/core/src/once.cpp index 5ac0c1e..c29d928 100644 --- a/modules/core/src/once.cpp +++ b/modules/core/src/once.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of once */ +#include #include namespace DPL diff --git a/modules/core/src/read_write_mutex.cpp b/modules/core/src/read_write_mutex.cpp index 7807f7f..596b0f6 100644 --- a/modules/core/src/read_write_mutex.cpp +++ b/modules/core/src/read_write_mutex.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of read write mutex */ +#include #include #include diff --git a/modules/core/src/recursive_mutex.cpp b/modules/core/src/recursive_mutex.cpp index 19e9dea..c9fcd5d 100644 --- a/modules/core/src/recursive_mutex.cpp +++ b/modules/core/src/recursive_mutex.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of recursive mutex */ +#include #include #include diff --git a/modules/core/src/semaphore.cpp b/modules/core/src/semaphore.cpp index 82d53ff..bc96cff 100644 --- a/modules/core/src/semaphore.cpp +++ b/modules/core/src/semaphore.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of semaphore */ +#include #include #include #include diff --git a/modules/core/src/serialization.cpp b/modules/core/src/serialization.cpp index b6e7da8..f8f05ff 100644 --- a/modules/core/src/serialization.cpp +++ b/modules/core/src/serialization.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of data serialization. */ +#include #include // diff --git a/modules/core/src/single_instance.cpp b/modules/core/src/single_instance.cpp index cca8365..71b68da 100644 --- a/modules/core/src/single_instance.cpp +++ b/modules/core/src/single_instance.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of single instance */ +#include #include #include #include diff --git a/modules/core/src/singleton.cpp b/modules/core/src/singleton.cpp index a6680f1..a76e8ac 100644 --- a/modules/core/src/singleton.cpp +++ b/modules/core/src/singleton.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of singleton */ +#include #include // diff --git a/modules/core/src/string.cpp b/modules/core/src/string.cpp index d945ebd..efb68c7 100644 --- a/modules/core/src/string.cpp +++ b/modules/core/src/string.cpp @@ -19,6 +19,7 @@ * @author Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com) * @version 1.0 */ +#include #include #include #include diff --git a/modules/core/src/task.cpp b/modules/core/src/task.cpp index a8f18a4..6d4ff0d 100644 --- a/modules/core/src/task.cpp +++ b/modules/core/src/task.cpp @@ -20,6 +20,7 @@ * @version 1.0 * @brief Implementation file for abstaract task definition */ +#include #include // diff --git a/modules/core/src/task_list.cpp b/modules/core/src/task_list.cpp index 89e0ff8..2176c31 100644 --- a/modules/core/src/task_list.cpp +++ b/modules/core/src/task_list.cpp @@ -20,6 +20,7 @@ * @version 1.0 * @brief Implementation file for task list */ +#include #include #include diff --git a/modules/core/src/thread.cpp b/modules/core/src/thread.cpp index 0a06b0a..8dacad6 100644 --- a/modules/core/src/thread.cpp +++ b/modules/core/src/thread.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of thread */ +#include #include #include #include diff --git a/modules/core/src/type_list.cpp b/modules/core/src/type_list.cpp index 8eeb106..fa94806 100644 --- a/modules/core/src/type_list.cpp +++ b/modules/core/src/type_list.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Generic type list template */ +#include #include // diff --git a/modules/core/src/union_cast.cpp b/modules/core/src/union_cast.cpp index b79b622..ffcb499 100644 --- a/modules/core/src/union_cast.cpp +++ b/modules/core/src/union_cast.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Implementation file for union cast */ +#include #include // diff --git a/modules/core/src/waitable_event.cpp b/modules/core/src/waitable_event.cpp index 6bb021c..f72190b 100644 --- a/modules/core/src/waitable_event.cpp +++ b/modules/core/src/waitable_event.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of waitable event */ +#include #include #include #include diff --git a/modules/core/src/waitable_handle.cpp b/modules/core/src/waitable_handle.cpp index faaea42..8875563 100644 --- a/modules/core/src/waitable_handle.cpp +++ b/modules/core/src/waitable_handle.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of waitable handle */ +#include #include #include #include diff --git a/modules/core/src/waitable_handle_watch_support.cpp b/modules/core/src/waitable_handle_watch_support.cpp index 19c10e7..e3d544c 100644 --- a/modules/core/src/waitable_handle_watch_support.cpp +++ b/modules/core/src/waitable_handle_watch_support.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of waitable handle watch support */ +#include #include #include #include diff --git a/modules/core/src/zip_input.cpp b/modules/core/src/zip_input.cpp index 0245abe..8ce1201 100644 --- a/modules/core/src/zip_input.cpp +++ b/modules/core/src/zip_input.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of zip input */ +#include #include #include #include diff --git a/modules/db/src/naive_synchronization_object.cpp b/modules/db/src/naive_synchronization_object.cpp index 198a2b6..9078f8a 100644 --- a/modules/db/src/naive_synchronization_object.cpp +++ b/modules/db/src/naive_synchronization_object.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of SQL naive synchronization object */ +#include #include #include diff --git a/modules/db/src/orm.cpp b/modules/db/src/orm.cpp index 1a4fccf..1d2f6b4 100644 --- a/modules/db/src/orm.cpp +++ b/modules/db/src/orm.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief Static definitions and function template specialziations of DPL-ORM. */ - +#include #include namespace DPL { diff --git a/modules/db/src/sql_connection.cpp b/modules/db/src/sql_connection.cpp index f79eabe..26fb815 100644 --- a/modules/db/src/sql_connection.cpp +++ b/modules/db/src/sql_connection.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of SQL connection */ +#include #include #include #include diff --git a/modules/db/src/thread_database_support.cpp b/modules/db/src/thread_database_support.cpp index 5b7865c..101640f 100644 --- a/modules/db/src/thread_database_support.cpp +++ b/modules/db/src/thread_database_support.cpp @@ -19,5 +19,5 @@ * @version 1.0 * @brief This file contains the definition of thread database support */ - +#include #include \ No newline at end of file diff --git a/modules/dbus/src/connection.cpp b/modules/dbus/src/connection.cpp index e50faa8..c9b7f8e 100644 --- a/modules/dbus/src/connection.cpp +++ b/modules/dbus/src/connection.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief */ - +#include #include #include #include diff --git a/modules/dbus/src/dispatcher.cpp b/modules/dbus/src/dispatcher.cpp index ca1bbab..5411f35 100644 --- a/modules/dbus/src/dispatcher.cpp +++ b/modules/dbus/src/dispatcher.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief */ - +#include #include namespace DPL diff --git a/modules/dbus/src/interface.cpp b/modules/dbus/src/interface.cpp index 248ac6d..b151a75 100644 --- a/modules/dbus/src/interface.cpp +++ b/modules/dbus/src/interface.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief */ +#include #include #include #include diff --git a/modules/dbus/src/object.cpp b/modules/dbus/src/object.cpp index 1c46018..02781a7 100644 --- a/modules/dbus/src/object.cpp +++ b/modules/dbus/src/object.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief */ - +#include #include namespace DPL { diff --git a/modules/dbus/src/object_proxy.cpp b/modules/dbus/src/object_proxy.cpp index 22275a1..dcabb33 100644 --- a/modules/dbus/src/object_proxy.cpp +++ b/modules/dbus/src/object_proxy.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief */ - +#include #include namespace DPL { diff --git a/modules/dbus/src/server.cpp b/modules/dbus/src/server.cpp index d924591..1f84ce6 100644 --- a/modules/dbus/src/server.cpp +++ b/modules/dbus/src/server.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief */ - +#include #include #include #include diff --git a/modules/encryption/src/resource_decryption.cpp b/modules/encryption/src/resource_decryption.cpp index b15deb6..db45f81 100644 --- a/modules/encryption/src/resource_decryption.cpp +++ b/modules/encryption/src/resource_decryption.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Implementation file for resource decryption */ +#include #include #include diff --git a/modules/encryption/src/resource_encryption.cpp b/modules/encryption/src/resource_encryption.cpp index 8f6de46..e89940e 100644 --- a/modules/encryption/src/resource_encryption.cpp +++ b/modules/encryption/src/resource_encryption.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Implementation file for resource encryption */ +#include #include #include diff --git a/modules/event/src/abstract_event_call.cpp b/modules/event/src/abstract_event_call.cpp index 093e5b5..2bd0d11 100644 --- a/modules/event/src/abstract_event_call.cpp +++ b/modules/event/src/abstract_event_call.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract event call */ +#include #include namespace DPL diff --git a/modules/event/src/abstract_event_dispatcher.cpp b/modules/event/src/abstract_event_dispatcher.cpp index 043e452..a3e6317 100644 --- a/modules/event/src/abstract_event_dispatcher.cpp +++ b/modules/event/src/abstract_event_dispatcher.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract event dispatcher */ +#include #include namespace DPL diff --git a/modules/event/src/controller.cpp b/modules/event/src/controller.cpp index abb126e..337a39f 100644 --- a/modules/event/src/controller.cpp +++ b/modules/event/src/controller.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of MVC controller */ +#include #include // diff --git a/modules/event/src/event_listener.cpp b/modules/event/src/event_listener.cpp index a90973c..5d0d382 100644 --- a/modules/event/src/event_listener.cpp +++ b/modules/event/src/event_listener.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of MVC event listener */ +#include #include // diff --git a/modules/event/src/event_support.cpp b/modules/event/src/event_support.cpp index 641b311..73cdea3 100644 --- a/modules/event/src/event_support.cpp +++ b/modules/event/src/event_support.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of MVC event support */ +#include #include namespace DPL diff --git a/modules/event/src/generic_event_call.cpp b/modules/event/src/generic_event_call.cpp index 2ad49b8..d0d6886 100644 --- a/modules/event/src/generic_event_call.cpp +++ b/modules/event/src/generic_event_call.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of generic event call */ +#include #include // diff --git a/modules/event/src/inter_context_delegate.cpp b/modules/event/src/inter_context_delegate.cpp index e1dfc52..07e3885 100644 --- a/modules/event/src/inter_context_delegate.cpp +++ b/modules/event/src/inter_context_delegate.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of ICDelegate functionality */ +#include #include // diff --git a/modules/event/src/main_event_dispatcher.cpp b/modules/event/src/main_event_dispatcher.cpp index dc2de85..6faf090 100644 --- a/modules/event/src/main_event_dispatcher.cpp +++ b/modules/event/src/main_event_dispatcher.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of main event dispatcher for EFL */ +#include #include #include #include diff --git a/modules/event/src/model.cpp b/modules/event/src/model.cpp index a2e951d..4f6f86e 100644 --- a/modules/event/src/model.cpp +++ b/modules/event/src/model.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of model */ +#include #include namespace DPL diff --git a/modules/event/src/thread_event_dispatcher.cpp b/modules/event/src/thread_event_dispatcher.cpp index fa155bc..31aee44 100644 --- a/modules/event/src/thread_event_dispatcher.cpp +++ b/modules/event/src/thread_event_dispatcher.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of thread event dispatcher */ +#include #include #include #include diff --git a/modules/localization/src/LanguageTagsProvider.cpp b/modules/localization/src/LanguageTagsProvider.cpp index 69e6d41..120490a 100644 --- a/modules/localization/src/LanguageTagsProvider.cpp +++ b/modules/localization/src/LanguageTagsProvider.cpp @@ -18,7 +18,7 @@ * @author Marcin Kaminski (marcin.ka@samsung.com) * @version 1.0 */ - +#include #include "LanguageTagsProvider.h" #include diff --git a/modules/localization/src/w3c_file_localization.cpp b/modules/localization/src/w3c_file_localization.cpp index a071fd6..60ea79d 100644 --- a/modules/localization/src/w3c_file_localization.cpp +++ b/modules/localization/src/w3c_file_localization.cpp @@ -18,7 +18,7 @@ * @author Lukasz Wrzosek (l.wrzosek@samsung.com) * @version 1.0 */ - +#include #include #include #include diff --git a/modules/log/src/abstract_log_provider.cpp b/modules/log/src/abstract_log_provider.cpp index d16976c..0b28573 100644 --- a/modules/log/src/abstract_log_provider.cpp +++ b/modules/log/src/abstract_log_provider.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract log provider */ +#include #include #include diff --git a/modules/log/src/dlog_log_provider.cpp b/modules/log/src/dlog_log_provider.cpp index 448ae2c..2c05af4 100644 --- a/modules/log/src/dlog_log_provider.cpp +++ b/modules/log/src/dlog_log_provider.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of DLOG log provider */ +#include #include #include #include diff --git a/modules/log/src/log.cpp b/modules/log/src/log.cpp index b24970a..a2f1f94 100644 --- a/modules/log/src/log.cpp +++ b/modules/log/src/log.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of log system */ +#include #include #include diff --git a/modules/log/src/old_style_log_provider.cpp b/modules/log/src/old_style_log_provider.cpp index 7c3b1fc..2ad499f 100644 --- a/modules/log/src/old_style_log_provider.cpp +++ b/modules/log/src/old_style_log_provider.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of old style log provider */ +#include #include #include #include diff --git a/modules/popup/src/evas_object.cpp b/modules/popup/src/evas_object.cpp index aa41500..f95e13b 100644 --- a/modules/popup/src/evas_object.cpp +++ b/modules/popup/src/evas_object.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file is the implementation for Evas_Object wrapper from Efl. */ - +#include #include #include diff --git a/modules/popup/src/popup_controller.cpp b/modules/popup/src/popup_controller.cpp index 9f5ac51..f67dc16 100644 --- a/modules/popup/src/popup_controller.cpp +++ b/modules/popup/src/popup_controller.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @bref Implementation file for popup controller */ - +#include #include #include diff --git a/modules/popup/src/popup_manager.cpp b/modules/popup/src/popup_manager.cpp index 6e838f6..be1b680 100644 --- a/modules/popup/src/popup_manager.cpp +++ b/modules/popup/src/popup_manager.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This is popup_manager implementation file */ - +#include #include #include diff --git a/modules/popup/src/popup_renderer.cpp b/modules/popup/src/popup_renderer.cpp index c96fc24..b702faa 100644 --- a/modules/popup/src/popup_renderer.cpp +++ b/modules/popup/src/popup_renderer.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This is efl specific implementation for PopupRenderer */ - +#include #include #include #include diff --git a/modules/rpc/src/abstract_rpc_connection.cpp b/modules/rpc/src/abstract_rpc_connection.cpp index b1b2140..e5455e2 100644 --- a/modules/rpc/src/abstract_rpc_connection.cpp +++ b/modules/rpc/src/abstract_rpc_connection.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract RPC connection */ +#include #include // diff --git a/modules/rpc/src/abstract_rpc_connector.cpp b/modules/rpc/src/abstract_rpc_connector.cpp index 63527bc..2bd879e 100644 --- a/modules/rpc/src/abstract_rpc_connector.cpp +++ b/modules/rpc/src/abstract_rpc_connector.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of abstract RPC connector */ +#include #include // diff --git a/modules/rpc/src/generic_rpc_connection.cpp b/modules/rpc/src/generic_rpc_connection.cpp index f087494..bd472b0 100644 --- a/modules/rpc/src/generic_rpc_connection.cpp +++ b/modules/rpc/src/generic_rpc_connection.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of generic RPC connection */ +#include #include #include #include diff --git a/modules/rpc/src/generic_socket_rpc_client.cpp b/modules/rpc/src/generic_socket_rpc_client.cpp index 3c09aac..f75fdc8 100644 --- a/modules/rpc/src/generic_socket_rpc_client.cpp +++ b/modules/rpc/src/generic_socket_rpc_client.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of generic socket RPC client */ +#include #include // diff --git a/modules/rpc/src/generic_socket_rpc_connection.cpp b/modules/rpc/src/generic_socket_rpc_connection.cpp index 0786c62..961a4dc 100644 --- a/modules/rpc/src/generic_socket_rpc_connection.cpp +++ b/modules/rpc/src/generic_socket_rpc_connection.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of generic socket RPC connection */ +#include #include // diff --git a/modules/rpc/src/generic_socket_rpc_server.cpp b/modules/rpc/src/generic_socket_rpc_server.cpp index 2472c66..a0590f4 100644 --- a/modules/rpc/src/generic_socket_rpc_server.cpp +++ b/modules/rpc/src/generic_socket_rpc_server.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of generic socket RPC */ +#include #include // diff --git a/modules/rpc/src/unix_socket_rpc_client.cpp b/modules/rpc/src/unix_socket_rpc_client.cpp index fb24741..b4bb1f4 100644 --- a/modules/rpc/src/unix_socket_rpc_client.cpp +++ b/modules/rpc/src/unix_socket_rpc_client.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of unix socket RPC client */ +#include #include #include diff --git a/modules/rpc/src/unix_socket_rpc_connection.cpp b/modules/rpc/src/unix_socket_rpc_connection.cpp index 28fea84..1a4615f 100644 --- a/modules/rpc/src/unix_socket_rpc_connection.cpp +++ b/modules/rpc/src/unix_socket_rpc_connection.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of unix socket RPC connection */ +#include #include namespace DPL diff --git a/modules/rpc/src/unix_socket_rpc_server.cpp b/modules/rpc/src/unix_socket_rpc_server.cpp index ea71eb7..38992ab 100644 --- a/modules/rpc/src/unix_socket_rpc_server.cpp +++ b/modules/rpc/src/unix_socket_rpc_server.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of unix socket RPC server */ +#include #include #include diff --git a/modules/socket/src/generic_socket.cpp b/modules/socket/src/generic_socket.cpp index a8e2237..aff2d74 100644 --- a/modules/socket/src/generic_socket.cpp +++ b/modules/socket/src/generic_socket.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of generic socket */ +#include #include // diff --git a/modules/socket/src/unix_socket.cpp b/modules/socket/src/unix_socket.cpp index f185da3..29fae2b 100644 --- a/modules/socket/src/unix_socket.cpp +++ b/modules/socket/src/unix_socket.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of unix socket */ +#include #include #include #include diff --git a/modules/socket/src/waitable_input_output_execution_context_support.cpp b/modules/socket/src/waitable_input_output_execution_context_support.cpp index 7411b49..6edf9b2 100644 --- a/modules/socket/src/waitable_input_output_execution_context_support.cpp +++ b/modules/socket/src/waitable_input_output_execution_context_support.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file is the implementation file of waitable input-output execution context support */ +#include #include #include #include // FIXME: Remove !!! diff --git a/modules/test/src/test_results_collector.cpp b/modules/test/src/test_results_collector.cpp index 4a91712..029393d 100644 --- a/modules/test/src/test_results_collector.cpp +++ b/modules/test/src/test_results_collector.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief Implementation file some concrete TestResulstsCollector */ - +#include #include #include #include diff --git a/modules/test/src/test_runner.cpp b/modules/test/src/test_runner.cpp index 98f1ba1..8ad093a 100644 --- a/modules/test/src/test_runner.cpp +++ b/modules/test/src/test_runner.cpp @@ -20,6 +20,7 @@ * @version 1.0 * @brief This file is the implementation file of test runner */ +#include #include #include #include diff --git a/modules/utils/src/bash_utils.cpp b/modules/utils/src/bash_utils.cpp index 5796bc6..b76a261 100644 --- a/modules/utils/src/bash_utils.cpp +++ b/modules/utils/src/bash_utils.cpp @@ -18,7 +18,7 @@ * @author Iwanek Tomasz * @version 1.0 */ - +#include #include #include diff --git a/modules/utils/src/folder_size.cpp b/modules/utils/src/folder_size.cpp index 2982d44..2029434 100644 --- a/modules/utils/src/folder_size.cpp +++ b/modules/utils/src/folder_size.cpp @@ -20,7 +20,7 @@ * @version 1.0 * @brief Implementation for function calculating directory size */ - +#include #include #include #include diff --git a/modules/utils/src/mime_type_utils.cpp b/modules/utils/src/mime_type_utils.cpp index 82dc544..2977a78 100644 --- a/modules/utils/src/mime_type_utils.cpp +++ b/modules/utils/src/mime_type_utils.cpp @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +#include #include #include #include diff --git a/modules/utils/src/warp_iri.cpp b/modules/utils/src/warp_iri.cpp index 2fe65ec..fb8ca70 100644 --- a/modules/utils/src/warp_iri.cpp +++ b/modules/utils/src/warp_iri.cpp @@ -18,7 +18,7 @@ * but there are some patent issue between W3C WARP SPEC and APPLE. * so if you want to use this file, refer to the README file in root directory */ - +#include #include #include #include diff --git a/modules/utils/src/widget_version.cpp b/modules/utils/src/widget_version.cpp index 595f4c1..e19610b 100644 --- a/modules/utils/src/widget_version.cpp +++ b/modules/utils/src/widget_version.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Implementation file for widget version */ +#include #include #include #include diff --git a/modules/utils/src/wrt_global_settings.cpp b/modules/utils/src/wrt_global_settings.cpp index 7927841..9cc9c56 100644 --- a/modules/utils/src/wrt_global_settings.cpp +++ b/modules/utils/src/wrt_global_settings.cpp @@ -20,6 +20,7 @@ * @author Lukasz Wrzosek (l.wrzosek@samsung.com) * @brief runtime */ +#include #include #include #include diff --git a/modules/utils/src/wrt_utility.cpp b/modules/utils/src/wrt_utility.cpp index 190740e..9bb2187 100644 --- a/modules/utils/src/wrt_utility.cpp +++ b/modules/utils/src/wrt_utility.cpp @@ -19,7 +19,7 @@ * @author Janusz Majnert * @brief Implementation of some common utility functions */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/WrtDatabase.cpp b/modules/widget_dao/dao/WrtDatabase.cpp index 6f60668..106d98a 100644 --- a/modules/widget_dao/dao/WrtDatabase.cpp +++ b/modules/widget_dao/dao/WrtDatabase.cpp @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - +#include #include #include diff --git a/modules/widget_dao/dao/common_dao_types.cpp b/modules/widget_dao/dao/common_dao_types.cpp index a2aff28..49abd87 100644 --- a/modules/widget_dao/dao/common_dao_types.cpp +++ b/modules/widget_dao/dao/common_dao_types.cpp @@ -20,6 +20,6 @@ * @version 1.0 * @brief This file contains the implementation of common data types for wrtdb */ - +#include namespace WrtDB { } // namespace WrtDB diff --git a/modules/widget_dao/dao/config_parser_data.cpp b/modules/widget_dao/dao/config_parser_data.cpp index dde154f..4d0968b 100644 --- a/modules/widget_dao/dao/config_parser_data.cpp +++ b/modules/widget_dao/dao/config_parser_data.cpp @@ -19,6 +19,7 @@ * @version 0.1 * @brief */ +#include #include #include #include diff --git a/modules/widget_dao/dao/feature_dao.cpp b/modules/widget_dao/dao/feature_dao.cpp index 7701019..2a272d2 100755 --- a/modules/widget_dao/dao/feature_dao.cpp +++ b/modules/widget_dao/dao/feature_dao.cpp @@ -22,7 +22,7 @@ * @version 1.0 * @brief This file contains the definition of feature configuration. */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/feature_dao_read_only.cpp b/modules/widget_dao/dao/feature_dao_read_only.cpp index 6db3f0d..1d20bdf 100644 --- a/modules/widget_dao/dao/feature_dao_read_only.cpp +++ b/modules/widget_dao/dao/feature_dao_read_only.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file contains the implementation of feature dao read only */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/global_dao.cpp b/modules/widget_dao/dao/global_dao.cpp index 11bd708..cf7d818 100644 --- a/modules/widget_dao/dao/global_dao.cpp +++ b/modules/widget_dao/dao/global_dao.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file contains the definition of global dao class. */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/global_dao_read_only.cpp b/modules/widget_dao/dao/global_dao_read_only.cpp index f44e8f7..1936d38 100644 --- a/modules/widget_dao/dao/global_dao_read_only.cpp +++ b/modules/widget_dao/dao/global_dao_read_only.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file contains the definition of global dao class. */ - +#include #include #include diff --git a/modules/widget_dao/dao/path_builder.cpp b/modules/widget_dao/dao/path_builder.cpp index 4d91bbf..c55841a 100644 --- a/modules/widget_dao/dao/path_builder.cpp +++ b/modules/widget_dao/dao/path_builder.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief Implementation file for PathBuilde class. */ +#include #include #include diff --git a/modules/widget_dao/dao/plugin_dao.cpp b/modules/widget_dao/dao/plugin_dao.cpp index a80ae85..edfa08c 100644 --- a/modules/widget_dao/dao/plugin_dao.cpp +++ b/modules/widget_dao/dao/plugin_dao.cpp @@ -20,7 +20,7 @@ * @version 1.0 * @brief This file contains the definition of plugin dao class. */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/plugin_dao_read_only.cpp b/modules/widget_dao/dao/plugin_dao_read_only.cpp index feb8271..a1aec8f 100644 --- a/modules/widget_dao/dao/plugin_dao_read_only.cpp +++ b/modules/widget_dao/dao/plugin_dao_read_only.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file contains the implementation of plugin dao read only */ - +#include #include #include diff --git a/modules/widget_dao/dao/property_dao.cpp b/modules/widget_dao/dao/property_dao.cpp index 95ba056..9193b46 100644 --- a/modules/widget_dao/dao/property_dao.cpp +++ b/modules/widget_dao/dao/property_dao.cpp @@ -19,7 +19,7 @@ * @version 1.0 * @brief This file contains the definition of property dao class. */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/property_dao_read_only.cpp b/modules/widget_dao/dao/property_dao_read_only.cpp index 74208af..2e6c121 100644 --- a/modules/widget_dao/dao/property_dao_read_only.cpp +++ b/modules/widget_dao/dao/property_dao_read_only.cpp @@ -19,7 +19,7 @@ * Created on: Nov 16, 2011 * Author: Krzysztof Jackiewicz(k.jackiewicz@samsung.com) */ - +#include #include #include #include diff --git a/modules/widget_dao/dao/webruntime_database.cpp b/modules/widget_dao/dao/webruntime_database.cpp index bc24fbe..5fbb7d7 100644 --- a/modules/widget_dao/dao/webruntime_database.cpp +++ b/modules/widget_dao/dao/webruntime_database.cpp @@ -19,6 +19,7 @@ * @version 1.0 * @brief This file contains the definition of webruntime database */ +#include #include DPL::Mutex g_wrtDbQueriesMutex; diff --git a/modules/widget_dao/dao/widget_dao.cpp b/modules/widget_dao/dao/widget_dao.cpp index b26e1b5..cdb99da 100644 --- a/modules/widget_dao/dao/widget_dao.cpp +++ b/modules/widget_dao/dao/widget_dao.cpp @@ -25,7 +25,7 @@ * @version 1.0 * @brief This file contains the definition of Configuration. */ - +#include #include #include diff --git a/modules/widget_dao/dao/widget_dao_read_only.cpp b/modules/widget_dao/dao/widget_dao_read_only.cpp index 6aba4a0..9027d94 100644 --- a/modules/widget_dao/dao/widget_dao_read_only.cpp +++ b/modules/widget_dao/dao/widget_dao_read_only.cpp @@ -23,7 +23,7 @@ * @version 1.0 * @brief This file contains the declaration of widget dao */ - +#include #include #include