X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-demo.git;a=blobdiff_plain;f=examples%2Fcontact-cards%2Fcontact-data.h;h=f9cfa7fc9250e36d5f939caa17c99f62d64885df;hp=0036774171d4e1d8f66c37989b69c4bca6da4bc2;hb=1b19fd140ff139b5854a1a62447faf31b175d8f6;hpb=b26d446b0cb6a316abc3a79d4fc70d0ae1b7994c diff --git a/examples/contact-cards/contact-data.h b/examples/contact-cards/contact-data.h index 0036774..f9cfa7f 100644 --- a/examples/contact-cards/contact-data.h +++ b/examples/contact-cards/contact-data.h @@ -2,7 +2,7 @@ #define CONTACT_DATA_H /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -23,18 +23,17 @@ namespace ContactData { - /** * @brief The information for an individual contact. */ struct Item { - const char * const name; ///< The name of the contact. - const char * const address; ///< The address of the contact. - const char * const imagePath; ///< The path to the image that represents the contact. + const char* const name; ///< The name of the contact. + const char* const address; ///< The address of the contact. + const char* const imagePath; ///< The path to the image that represents the contact. }; -extern const Item TABLE[]; ///< The table that has the information for all the contacts. +extern const Item TABLE[]; ///< The table that has the information for all the contacts. extern const size_t TABLE_SIZE; ///< The size of TABLE. Can use this to iterate through TABLE. } // namespace ContactData