120 lines
7.6 KiB
HTML
120 lines
7.6 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
|
|
<meta name="generator" content="Doxygen 1.8.6"/>
|
|
<title>Boost.Locale: hello.cpp</title>
|
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="jquery.js"></script>
|
|
<script type="text/javascript" src="dynsections.js"></script>
|
|
<link href="navtree.css" rel="stylesheet" type="text/css"/>
|
|
<script type="text/javascript" src="resize.js"></script>
|
|
<script type="text/javascript" src="navtree.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(initResizable);
|
|
$(window).load(resizeHeight);
|
|
</script>
|
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
|
<div id="titlearea">
|
|
<table cellspacing="0" cellpadding="0">
|
|
<tbody>
|
|
<tr style="height: 56px;">
|
|
<td id="projectlogo"><img alt="Logo" src="boost-small.png"/></td>
|
|
<td style="padding-left: 0.5em;">
|
|
<div id="projectname">Boost.Locale
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- end header part -->
|
|
<!-- Generated by Doxygen 1.8.6 -->
|
|
<div id="navrow1" class="tabs">
|
|
<ul class="tablist">
|
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
|
<li><a href="pages.html"><span>Related Pages</span></a></li>
|
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
|
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
|
|
<li><a href="annotated.html"><span>Classes</span></a></li>
|
|
<li><a href="files.html"><span>Files</span></a></li>
|
|
<li><a href="examples.html"><span>Examples</span></a></li>
|
|
</ul>
|
|
</div>
|
|
</div><!-- top -->
|
|
<div id="side-nav" class="ui-resizable side-nav-resizable">
|
|
<div id="nav-tree">
|
|
<div id="nav-tree-contents">
|
|
<div id="nav-sync" class="sync"></div>
|
|
</div>
|
|
</div>
|
|
<div id="splitbar" style="-moz-user-select:none;"
|
|
class="ui-resizable-handle">
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){initNavTree('hello_8cpp-example.html','');});
|
|
</script>
|
|
<div id="doc-content">
|
|
<div class="header">
|
|
<div class="headertitle">
|
|
<div class="title">hello.cpp</div> </div>
|
|
</div><!--header-->
|
|
<div class="contents">
|
|
<p>Basic example of using various functions provided by this library</p>
|
|
<div class="fragment"><div class="line"><span class="comment">//</span></div>
|
|
<div class="line"><span class="comment">// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)</span></div>
|
|
<div class="line"><span class="comment">//</span></div>
|
|
<div class="line"><span class="comment">// Distributed under the Boost Software License, Version 1.0. (See</span></div>
|
|
<div class="line"><span class="comment">// accompanying file LICENSE_1_0.txt or copy at</span></div>
|
|
<div class="line"><span class="comment">// http://www.boost.org/LICENSE_1_0.txt)</span></div>
|
|
<div class="line"><span class="comment">//</span></div>
|
|
<div class="line"><span class="preprocessor">#include <boost/locale.hpp></span></div>
|
|
<div class="line"><span class="preprocessor">#include <iostream></span></div>
|
|
<div class="line"></div>
|
|
<div class="line"><span class="preprocessor">#include <ctime></span></div>
|
|
<div class="line"></div>
|
|
<div class="line"><span class="keywordtype">int</span> main()</div>
|
|
<div class="line">{</div>
|
|
<div class="line"> <span class="keyword">using namespace </span>boost::locale;</div>
|
|
<div class="line"> <span class="keyword">using namespace </span>std;</div>
|
|
<div class="line"> <a name="_a0"></a><a class="code" href="classboost_1_1locale_1_1generator.html">generator</a> gen;</div>
|
|
<div class="line"> locale loc=gen(<span class="stringliteral">""</span>); </div>
|
|
<div class="line"> <span class="comment">// Create system default locale</span></div>
|
|
<div class="line"></div>
|
|
<div class="line"> locale::global(loc); </div>
|
|
<div class="line"> <span class="comment">// Make it system global</span></div>
|
|
<div class="line"> </div>
|
|
<div class="line"> cout.imbue(loc);</div>
|
|
<div class="line"> <span class="comment">// Set as default locale for output</span></div>
|
|
<div class="line"> </div>
|
|
<div class="line"> cout <<<a name="a1"></a><a class="code" href="group__format.html#gad7914df7b54382c1ad7f5360676fe2e8">format</a>(<span class="stringliteral">"Today {1,date} at {1,time} we had run our first localization example"</span>) % <a name="a2"></a><a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">time</a>(0) </div>
|
|
<div class="line"> <<endl;</div>
|
|
<div class="line"> </div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is how we show numbers in this locale "</span><<<a name="a3"></a><a class="code" href="group__manipulators.html#gaee05db73f5525d9a010cdc3aa02f634f">as::number</a> << 103.34 <<endl; </div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is how we show currency in this locale "</span><<<a name="a4"></a><a class="code" href="group__manipulators.html#ga97c4997f9692834ea7b5ed3e8137d5fd">as::currency</a> << 103.34 <<endl; </div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is typical date in the locale "</span><<<a name="a5"></a><a class="code" href="group__manipulators.html#gae05b82e6658dc573521518fed5f5c77f">as::date</a> << <a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">std::time</a>(0) <<endl;</div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is typical time in the locale "</span><<<a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">as::time</a> << <a class="code" href="group__manipulators.html#gae669b101cbeaed6f6d246ebdcaa8f39c">std::time</a>(0) <<endl;</div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is upper case "</span><<<a name="a6"></a><a class="code" href="group__convert.html#ga2ceae621801e8cf4f77c60d1e3047ae8">to_upper</a>(<span class="stringliteral">"Hello World!"</span>)<<endl;</div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is lower case "</span><<<a name="a7"></a><a class="code" href="group__convert.html#ga4a3eb15f42f5cbae7bdd00c9e9cac222">to_lower</a>(<span class="stringliteral">"Hello World!"</span>)<<endl;</div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is title case "</span><<<a name="a8"></a><a class="code" href="group__convert.html#ga684efb375e060c71cd3e1799a6329f7f">to_title</a>(<span class="stringliteral">"Hello World!"</span>)<<endl;</div>
|
|
<div class="line"> cout<<<span class="stringliteral">"This is fold case "</span><<<a name="a9"></a><a class="code" href="group__convert.html#gadf59d16355babd955766deef89d470ea">fold_case</a>(<span class="stringliteral">"Hello World!"</span>)<<endl;</div>
|
|
<div class="line"> </div>
|
|
<div class="line">}</div>
|
|
<div class="line"></div>
|
|
<div class="line"><span class="comment">// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4</span></div>
|
|
</div><!-- fragment --> </div><!-- contents -->
|
|
</div><!-- doc-content -->
|
|
|
|
<li class="footer">
|
|
© 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.
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|