hello_8cpp-example.html 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=9"/>
  6. <meta name="generator" content="Doxygen 1.8.6"/>
  7. <title>Boost.Locale: hello.cpp</title>
  8. <link href="tabs.css" rel="stylesheet" type="text/css"/>
  9. <script type="text/javascript" src="jquery.js"></script>
  10. <script type="text/javascript" src="dynsections.js"></script>
  11. <link href="navtree.css" rel="stylesheet" type="text/css"/>
  12. <script type="text/javascript" src="resize.js"></script>
  13. <script type="text/javascript" src="navtree.js"></script>
  14. <script type="text/javascript">
  15. $(document).ready(initResizable);
  16. $(window).load(resizeHeight);
  17. </script>
  18. <link href="doxygen.css" rel="stylesheet" type="text/css" />
  19. </head>
  20. <body>
  21. <div id="top"><!-- do not remove this div, it is closed by doxygen! -->
  22. <div id="titlearea">
  23. <table cellspacing="0" cellpadding="0">
  24. <tbody>
  25. <tr style="height: 56px;">
  26. <td id="projectlogo"><img alt="Logo" src="boost-small.png"/></td>
  27. <td style="padding-left: 0.5em;">
  28. <div id="projectname">Boost.Locale
  29. </div>
  30. </td>
  31. </tr>
  32. </tbody>
  33. </table>
  34. </div>
  35. <!-- end header part -->
  36. <!-- Generated by Doxygen 1.8.6 -->
  37. <div id="navrow1" class="tabs">
  38. <ul class="tablist">
  39. <li><a href="index.html"><span>Main&#160;Page</span></a></li>
  40. <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
  41. <li><a href="modules.html"><span>Modules</span></a></li>
  42. <li><a href="namespaces.html"><span>Namespaces</span></a></li>
  43. <li><a href="annotated.html"><span>Classes</span></a></li>
  44. <li><a href="files.html"><span>Files</span></a></li>
  45. <li><a href="examples.html"><span>Examples</span></a></li>
  46. </ul>
  47. </div>
  48. </div><!-- top -->
  49. <div id="side-nav" class="ui-resizable side-nav-resizable">
  50. <div id="nav-tree">
  51. <div id="nav-tree-contents">
  52. <div id="nav-sync" class="sync"></div>
  53. </div>
  54. </div>
  55. <div id="splitbar" style="-moz-user-select:none;"
  56. class="ui-resizable-handle">
  57. </div>
  58. </div>
  59. <script type="text/javascript">
  60. $(document).ready(function(){initNavTree('hello_8cpp-example.html','');});
  61. </script>
  62. <div id="doc-content">
  63. <div class="header">
  64. <div class="headertitle">
  65. <div class="title">hello.cpp</div> </div>
  66. </div><!--header-->
  67. <div class="contents">
  68. <p>Basic example of using various functions provided by this library</p>
  69. <div class="fragment"><div class="line"><span class="comment">//</span></div>
  70. <div class="line"><span class="comment">// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)</span></div>
  71. <div class="line"><span class="comment">//</span></div>
  72. <div class="line"><span class="comment">// Distributed under the Boost Software License, Version 1.0. (See</span></div>
  73. <div class="line"><span class="comment">// accompanying file LICENSE_1_0.txt or copy at</span></div>
  74. <div class="line"><span class="comment">// http://www.boost.org/LICENSE_1_0.txt)</span></div>
  75. <div class="line"><span class="comment">//</span></div>
  76. <div class="line"><span class="preprocessor">#include &lt;boost/locale.hpp&gt;</span></div>
  77. <div class="line"><span class="preprocessor">#include &lt;iostream&gt;</span></div>
  78. <div class="line"></div>
  79. <div class="line"><span class="preprocessor">#include &lt;ctime&gt;</span></div>
  80. <div class="line"></div>
  81. <div class="line"><span class="keywordtype">int</span> main()</div>
  82. <div class="line">{</div>
  83. <div class="line"> <span class="keyword">using namespace </span>boost::locale;</div>
  84. <div class="line"> <span class="keyword">using namespace </span>std;</div>
  85. <div class="line"> <a name="_a0"></a><a class="code" href="classboost_1_1locale_1_1generator.html">generator</a> gen;</div>
  86. <div class="line"> locale loc=gen(<span class="stringliteral">&quot;&quot;</span>); </div>
  87. <div class="line"> <span class="comment">// Create system default locale</span></div>
  88. <div class="line"></div>
  89. <div class="line"> locale::global(loc); </div>
  90. <div class="line"> <span class="comment">// Make it system global</span></div>
  91. <div class="line"> </div>
  92. <div class="line"> cout.imbue(loc);</div>
  93. <div class="line"> <span class="comment">// Set as default locale for output</span></div>
  94. <div class="line"> </div>
  95. <div class="line"> cout &lt;&lt;<a name="a1"></a><a class="code" href="group__format.html#gad7914df7b54382c1ad7f5360676fe2e8">format</a>(<span class="stringliteral">&quot;Today {1,date} at {1,time} we had run our first localization example&quot;</span>) % <a name="a2"></a><a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">time</a>(0) </div>
  96. <div class="line"> &lt;&lt;endl;</div>
  97. <div class="line"> </div>
  98. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is how we show numbers in this locale &quot;</span>&lt;&lt;<a name="a3"></a><a class="code" href="group__manipulators.html#gaee05db73f5525d9a010cdc3aa02f634f">as::number</a> &lt;&lt; 103.34 &lt;&lt;endl; </div>
  99. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is how we show currency in this locale &quot;</span>&lt;&lt;<a name="a4"></a><a class="code" href="group__manipulators.html#ga97c4997f9692834ea7b5ed3e8137d5fd">as::currency</a> &lt;&lt; 103.34 &lt;&lt;endl; </div>
  100. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is typical date in the locale &quot;</span>&lt;&lt;<a name="a5"></a><a class="code" href="group__manipulators.html#gae05b82e6658dc573521518fed5f5c77f">as::date</a> &lt;&lt; <a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">std::time</a>(0) &lt;&lt;endl;</div>
  101. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is typical time in the locale &quot;</span>&lt;&lt;<a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">as::time</a> &lt;&lt; <a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">std::time</a>(0) &lt;&lt;endl;</div>
  102. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is upper case &quot;</span>&lt;&lt;<a name="a6"></a><a class="code" href="group__convert.html#ga2ceae621801e8cf4f77c60d1e3047ae8">to_upper</a>(<span class="stringliteral">&quot;Hello World!&quot;</span>)&lt;&lt;endl;</div>
  103. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is lower case &quot;</span>&lt;&lt;<a name="a7"></a><a class="code" href="group__convert.html#ga4a3eb15f42f5cbae7bdd00c9e9cac222">to_lower</a>(<span class="stringliteral">&quot;Hello World!&quot;</span>)&lt;&lt;endl;</div>
  104. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is title case &quot;</span>&lt;&lt;<a name="a8"></a><a class="code" href="group__convert.html#ga684efb375e060c71cd3e1799a6329f7f">to_title</a>(<span class="stringliteral">&quot;Hello World!&quot;</span>)&lt;&lt;endl;</div>
  105. <div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;This is fold case &quot;</span>&lt;&lt;<a name="a9"></a><a class="code" href="group__convert.html#gadf59d16355babd955766deef89d470ea">fold_case</a>(<span class="stringliteral">&quot;Hello World!&quot;</span>)&lt;&lt;endl;</div>
  106. <div class="line"> </div>
  107. <div class="line">}</div>
  108. <div class="line"></div>
  109. <div class="line"><span class="comment">// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4</span></div>
  110. </div><!-- fragment --> </div><!-- contents -->
  111. </div><!-- doc-content -->
  112. <li class="footer">
  113. &copy; Copyright 2009-2012 Artyom Beilis, Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License</a>, Version 1.0.
  114. </li>
  115. </ul>
  116. </div>
  117. </body>
  118. </html>