X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Ftext-io.h;h=3eaf9f0fa08855ac4833a3de0e5443a1d0bf5d0d;hb=29a52105283ce8ced672ed92545daeacf882316a;hp=6c6d3c5f4936922aa9f7e0bb730579d371315306;hpb=b694e7e2ae624e206e1548b1a863c554eb9cd4d7;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/text-io.h b/dali-toolkit/internal/text/text-io.h index 6c6d3c5..3eaf9f0 100644 --- a/dali-toolkit/internal/text/text-io.h +++ b/dali-toolkit/internal/text/text-io.h @@ -2,7 +2,7 @@ #define DALI_TEXT_ABSTRACTION_TEXT_IO_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 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. @@ -19,8 +19,8 @@ */ // EXTERNAL INCLUDES -#include #include +#include // INTERNAL INCLUDES #include @@ -30,13 +30,10 @@ namespace Dali { - namespace Toolkit { - namespace Text { - /** * @brief Print a vector of characters. * @@ -44,7 +41,7 @@ namespace Text * @param [in] text The text to print. * @return The output stream operator. */ -std::ostream& operator<< (std::ostream& o, const Vector& text); +std::ostream& operator<<(std::ostream& o, const Vector& text); /** * @brief Print a vector of script runs. @@ -53,7 +50,7 @@ std::ostream& operator<< (std::ostream& o, const Vector& text); * @param [in] scriptRuns The script runs to print. * @return The output stream operator. */ -std::ostream& operator<< (std::ostream& o, const Vector& scriptRuns); +std::ostream& operator<<(std::ostream& o, const Vector& scriptRuns); /** * @brief Print a vector of font runs. @@ -62,7 +59,7 @@ std::ostream& operator<< (std::ostream& o, const Vector& scriptRuns); * @param [in] fontRuns The font runs to print. * @return The output stream operator. */ -std::ostream& operator<< (std::ostream& o, const Vector& fontRuns); +std::ostream& operator<<(std::ostream& o, const Vector& fontRuns); /** * @brief Print a vector of line runs. @@ -71,7 +68,7 @@ std::ostream& operator<< (std::ostream& o, const Vector& fontRuns); * @param [in] lineRuns The line runs to print. * @return The output stream operator. */ -std::ostream& operator<< (std::ostream& o, const Vector& lineRuns); +std::ostream& operator<<(std::ostream& o, const Vector& lineRuns); } // namespace Text