2023-03-27 10:16:23 -07:00
<!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.17" / >
2023-04-23 12:52:57 -07:00
< meta name = "description" content = "PhasicFlow is an open-source parallel DEM (discrete element method) package for simulating granular flow. It is developed in C++ and can be exectued on both GPU (like CUDA) and CPU." >
2023-03-27 10:16:23 -07:00
< title > PhasicFlow: src/phasicFlow/streams/streams.hpp File Reference< / 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 = "navtreedata.js" > < / script >
< script type = "text/javascript" src = "navtree.js" > < / script >
< link href = "search/search.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "search/searchdata.js" > < / script >
< script type = "text/javascript" src = "search/search.js" > < / script >
< script type = "text/javascript" >
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3& dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function() { init_search(); });
/* @license-end */
< / script >
2023-04-02 11:35:43 -07:00
< script type = "text/x-mathjax-config" >
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
< / script >
< script type = "text/javascript" async = "async" src = "http://cdn.mathjax.org/mathjax/latest/MathJax.js" > < / script >
2023-03-27 10:16:23 -07:00
< link href = "doxygen.css" rel = "stylesheet" type = "text/css" / >
< link href = "customdoxygen.css" rel = "stylesheet" type = "text/css" / >
< / head >
< body >
< div id = "top" > <!-- do not remove this div, it is closed by doxygen! -->
< div id = "titlearea" >
2023-04-14 10:28:41 -07:00
< table cellspacing = "0" >
2023-03-27 10:16:23 -07:00
< tbody >
2023-04-14 10:28:41 -07:00
< tr >
< td id = "projectlogo" > < a href = "https://github.com/PhasicFlow" > < img alt = "Logo" src = "phasicFlow_logo.png" > < / a > < / td >
2023-03-27 10:16:23 -07:00
< td > < div id = "MSearchBox" class = "MSearchBoxInactive" >
< span class = "left" >
< img id = "MSearchSelect" src = "search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
< input type = "text" id = "MSearchField" value = "Search" accesskey = "S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
< / span > < span class = "right" >
< a id = "MSearchClose" href = "javascript:searchBox.CloseResultsWindow()" > < img id = "MSearchCloseImg" border = "0" src = "search/close.png" alt = "" / > < / a >
< / span >
< / div >
< / td >
< / tr >
2023-04-14 10:28:41 -07:00
< tr >
< td id = "projectbrief" >
< a href = "https://https://cemf.ir" > www.cemf.ir< / a >
< / td >
< / tr >
2023-03-27 10:16:23 -07:00
< / tbody >
< / table >
< / div >
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
< script type = "text/javascript" >
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3& dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
< / script >
< / 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" >
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3& dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('streams_8hpp.html',''); initResizable(); });
/* @license-end */
< / script >
< div id = "doc-content" >
<!-- window showing the filter options -->
< div id = "MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
< / div >
<!-- iframe showing the search results (closed by default) -->
< div id = "MSearchResultsWindow" >
< iframe src = "javascript:void(0)" frameborder = "0"
name="MSearchResults" id="MSearchResults">
< / iframe >
< / div >
< div class = "header" >
< div class = "summary" >
< a href = "#namespaces" > Namespaces< / a > |
< a href = "#define-members" > Macros< / a > |
< a href = "#var-members" > Variables< / a > < / div >
< div class = "headertitle" >
< div class = "title" > streams.hpp File Reference< / div > < / div >
< / div > <!-- header -->
< div class = "contents" >
2023-04-02 14:53:54 -07:00
< div class = "textblock" > < div id = "dynsection-0" onclick = "return toggleVisibility(this)" class = "dynheader closed" style = "cursor:pointer;" >
< img id = "dynsection-0-trigger" src = "closed.png" alt = "+" / > Include dependency graph for streams.hpp:< / div >
< div id = "dynsection-0-summary" class = "dynsummary" style = "display:block;" >
< / div >
< div id = "dynsection-0-content" class = "dyncontent" style = "display:none;" >
2023-03-27 10:16:23 -07:00
< div class = "center" > < img src = "streams_8hpp__incl.png" border = "0" usemap = "#src_2phasicFlow_2streams_2streams_8hpp" alt = "" / > < / div >
< / div >
2023-04-02 14:53:54 -07:00
< / div > < div class = "textblock" > < div id = "dynsection-1" onclick = "return toggleVisibility(this)" class = "dynheader closed" style = "cursor:pointer;" >
< img id = "dynsection-1-trigger" src = "closed.png" alt = "+" / > This graph shows which files directly or indirectly include this file:< / div >
< div id = "dynsection-1-summary" class = "dynsummary" style = "display:block;" >
< / div >
< div id = "dynsection-1-content" class = "dyncontent" style = "display:none;" >
2023-03-27 10:16:23 -07:00
< div class = "center" > < img src = "streams_8hpp__dep__incl.png" border = "0" usemap = "#src_2phasicFlow_2streams_2streams_8hppdep" alt = "" / > < / div >
< / div >
< / div >
< p > < a href = "streams_8hpp_source.html" > Go to the source code of this file.< / a > < / p >
< table class = "memberdecls" >
< tr class = "heading" > < td colspan = "2" > < h2 class = "groupheader" > < a name = "namespaces" > < / a >
Namespaces< / h2 > < / td > < / tr >
< tr class = "memitem:namespacepFlow" > < td class = "memItemLeft" align = "right" valign = "top" >   < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html" > pFlow< / a > < / td > < / tr >
< tr class = "separator:" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< / table > < table class = "memberdecls" >
< tr class = "heading" > < td colspan = "2" > < h2 class = "groupheader" > < a name = "define-members" > < / a >
Macros< / h2 > < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:a41fa3612202db2d335c330fb061e0054" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#a41fa3612202db2d335c330fb061e0054" > INFORMATION< / a >       pFlow::pOutput.setColor(< a class = "el" href = "iOstream_8hpp.html#a4f6dbbff761fa51344d4f7873a986880" > boldChar< / a > ).setColor(< a class = "el" href = "iOstream_8hpp.html#ad12f9c5c03dad5208993a879fbbbf208" > magentaColor< / a > )< < " > INFO: " < < defaultColor< < < a class = "el" href = "iOstream_8hpp.html#ad12f9c5c03dad5208993a879fbbbf208" > magentaColor< / a > < / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "separator:a41fa3612202db2d335c330fb061e0054" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:a4101c99c5eb65c687037cb839295ae25" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#a4101c99c5eb65c687037cb839295ae25" > END_INFO< / a >       < a class = "el" href = "iOstream_8hpp.html#a08e5918c2f896d908122d37a353230c9" > defaultColor< / a > < < < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td > < / tr >
< tr class = "separator:a4101c99c5eb65c687037cb839295ae25" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:aeb765df06121339620670437d217fec8" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#aeb765df06121339620670437d217fec8" > REPORT< / a > (< a class = "el" href = "NBSLoop_8hpp.html#a58f1256fe216b2e84819aa621b683de1" > n< / a > )      pFlow::mOutput.space(2*< a class = "el" href = "NBSLoop_8hpp.html#a58f1256fe216b2e84819aa621b683de1" > n< / a > )< / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "separator:aeb765df06121339620670437d217fec8" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:a1861619f2a6e102d0043a98577c8c9e8" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#a1861619f2a6e102d0043a98577c8c9e8" > END_REPORT< / a >       < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td > < / tr >
< tr class = "separator:a1861619f2a6e102d0043a98577c8c9e8" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a5cb439d9f933fde4cf23caa370c030e7" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#a5cb439d9f933fde4cf23caa370c030e7" > WARNING< / a >       < a class = "el" href = "namespacepFlow.html#a6de878dda06ec10d828c865cdb474968" > pFlow::errReport< / a > < < < a class = "el" href = "iOstream_8hpp.html#a4f6dbbff761fa51344d4f7873a986880" > boldChar< / a > < < < a class = "el" href = "iOstream_8hpp.html#a47b7813fed88060b439cf45acff0b1e1" > yellowColor< / a > < < " > WARNING\n" < < defaultColor< < < a class = "el" href = "iOstream_8hpp.html#a47b7813fed88060b439cf45acff0b1e1" > yellowColor< / a > < < " " < / td > < / tr >
< tr class = "separator:a5cb439d9f933fde4cf23caa370c030e7" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:afc5e857376931bb65dafc9963042ea74" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#afc5e857376931bb65dafc9963042ea74" > END_WARNING< / a >       < a class = "el" href = "iOstream_8hpp.html#a08e5918c2f896d908122d37a353230c9" > defaultColor< / a > < < < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td > < / tr >
< tr class = "separator:afc5e857376931bb65dafc9963042ea74" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a735563036dced0b7d6cc98f97ea4978b" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#a735563036dced0b7d6cc98f97ea4978b" > ERR< / a >       < a class = "el" href = "namespacepFlow.html#a6de878dda06ec10d828c865cdb474968" > pFlow::errReport< / a > < < < a class = "el" href = "iOstream_8hpp.html#a4f6dbbff761fa51344d4f7873a986880" > boldChar< / a > < < < a class = "el" href = "iOstream_8hpp.html#a5baf5737dcaddf5c26107d7ecce88533" > redColor< / a > < < " > ERROR\n" < < defaultColor< < < a class = "el" href = "iOstream_8hpp.html#a5baf5737dcaddf5c26107d7ecce88533" > redColor< / a > < < " " < / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "separator:a735563036dced0b7d6cc98f97ea4978b" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:a4fe145765559e6dc61e1bcc2a5194331" > < td class = "memItemLeft" align = "right" valign = "top" > #define  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "streams_8hpp.html#a4fe145765559e6dc61e1bcc2a5194331" > END_ERR< / a >       < a class = "el" href = "iOstream_8hpp.html#a08e5918c2f896d908122d37a353230c9" > defaultColor< / a > < < < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td > < / tr >
< tr class = "separator:a4fe145765559e6dc61e1bcc2a5194331" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< / table > < table class = "memberdecls" >
< tr class = "heading" > < td colspan = "2" > < h2 class = "groupheader" > < a name = "var-members" > < / a >
Variables< / h2 > < / td > < / tr >
< tr class = "memitem:a86ae30c22a4ef4bc487b40ed52f4d2f9" > < td class = "memItemLeft" align = "right" valign = "top" > Ostream  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a86ae30c22a4ef4bc487b40ed52f4d2f9" > output< / a > < / td > < / tr >
< tr class = "separator:a86ae30c22a4ef4bc487b40ed52f4d2f9" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:a3b4a2b317fde2e633c19612003db8859" > < td class = "memItemLeft" align = "right" valign = "top" > masterOstream  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a3b4a2b317fde2e633c19612003db8859" > mOutput< / a > < / td > < / tr >
< tr class = "separator:a3b4a2b317fde2e633c19612003db8859" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
< tr class = "memitem:a5461d284d871cfccadeb3dea5a44a03f" > < td class = "memItemLeft" align = "right" valign = "top" > processorOstream  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a5461d284d871cfccadeb3dea5a44a03f" > pOutput< / a > < / td > < / tr >
< tr class = "separator:a5461d284d871cfccadeb3dea5a44a03f" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< tr class = "memitem:a01c5a99f17466741d1fcfbc8144fad91" > < td class = "memItemLeft" align = "right" valign = "top" > Istream  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a01c5a99f17466741d1fcfbc8144fad91" > input< / a > < / td > < / tr >
< tr class = "separator:a01c5a99f17466741d1fcfbc8144fad91" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2025-01-10 13:02:07 +03:30
< tr class = "memitem:a6de878dda06ec10d828c865cdb474968" > < td class = "memItemLeft" align = "right" valign = "top" > processorOstream  < / td > < td class = "memItemRight" valign = "bottom" > < a class = "el" href = "namespacepFlow.html#a6de878dda06ec10d828c865cdb474968" > errReport< / a > < / td > < / tr >
< tr class = "separator:a6de878dda06ec10d828c865cdb474968" > < td class = "memSeparator" colspan = "2" >   < / td > < / tr >
2023-03-27 10:16:23 -07:00
< / table >
< h2 class = "groupheader" > Macro Definition Documentation< / h2 >
< a id = "a41fa3612202db2d335c330fb061e0054" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a41fa3612202db2d335c330fb061e0054" > ◆ < / a > < / span > INFORMATION< / h2 >
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define INFORMATION      pFlow::pOutput.setColor(< a class = "el" href = "iOstream_8hpp.html#a4f6dbbff761fa51344d4f7873a986880" > boldChar< / a > ).setColor(< a class = "el" href = "iOstream_8hpp.html#ad12f9c5c03dad5208993a879fbbbf208" > magentaColor< / a > )< < " > INFO: " < < defaultColor< < < a class = "el" href = "iOstream_8hpp.html#ad12f9c5c03dad5208993a879fbbbf208" > magentaColor< / a > < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00036" > 36< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
2025-01-10 13:02:07 +03:30
< a id = "a4101c99c5eb65c687037cb839295ae25" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a4101c99c5eb65c687037cb839295ae25" > ◆ < / a > < / span > END_INFO< / h2 >
2023-03-27 10:16:23 -07:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define END_INFO      < a class = "el" href = "iOstream_8hpp.html#a08e5918c2f896d908122d37a353230c9" > defaultColor< / a > < < < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00037" > 37< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
< a id = "aeb765df06121339620670437d217fec8" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#aeb765df06121339620670437d217fec8" > ◆ < / a > < / span > REPORT< / h2 >
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
< td class = "memname" > #define REPORT< / td >
< td > (< / td >
< td class = "paramtype" >   < / td >
2025-01-10 13:02:07 +03:30
< td class = "paramname" > < a class = "el" href = "NBSLoop_8hpp.html#a58f1256fe216b2e84819aa621b683de1" > n< / a > < / td > < td > )< / td >
< td >       pFlow::mOutput.space(2*< a class = "el" href = "NBSLoop_8hpp.html#a58f1256fe216b2e84819aa621b683de1" > n< / a > )< / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00039" > 39< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
2025-01-10 13:02:07 +03:30
< a id = "a1861619f2a6e102d0043a98577c8c9e8" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a1861619f2a6e102d0043a98577c8c9e8" > ◆ < / a > < / span > END_REPORT< / h2 >
2023-03-27 10:16:23 -07:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define END_REPORT      < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00040" > 40< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
2025-01-10 13:02:07 +03:30
< a id = "a5cb439d9f933fde4cf23caa370c030e7" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a5cb439d9f933fde4cf23caa370c030e7" > ◆ < / a > < / span > WARNING< / h2 >
2023-03-27 10:16:23 -07:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define WARNING      < a class = "el" href = "namespacepFlow.html#a6de878dda06ec10d828c865cdb474968" > pFlow::errReport< / a > < < < a class = "el" href = "iOstream_8hpp.html#a4f6dbbff761fa51344d4f7873a986880" > boldChar< / a > < < < a class = "el" href = "iOstream_8hpp.html#a47b7813fed88060b439cf45acff0b1e1" > yellowColor< / a > < < " > WARNING\n" < < defaultColor< < < a class = "el" href = "iOstream_8hpp.html#a47b7813fed88060b439cf45acff0b1e1" > yellowColor< / a > < < " " < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00043" > 43< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
2025-01-10 13:02:07 +03:30
< a id = "afc5e857376931bb65dafc9963042ea74" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#afc5e857376931bb65dafc9963042ea74" > ◆ < / a > < / span > END_WARNING< / h2 >
2023-03-27 10:16:23 -07:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define END_WARNING      < a class = "el" href = "iOstream_8hpp.html#a08e5918c2f896d908122d37a353230c9" > defaultColor< / a > < < < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00044" > 44< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
< a id = "a735563036dced0b7d6cc98f97ea4978b" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a735563036dced0b7d6cc98f97ea4978b" > ◆ < / a > < / span > ERR< / h2 >
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define ERR      < a class = "el" href = "namespacepFlow.html#a6de878dda06ec10d828c865cdb474968" > pFlow::errReport< / a > < < < a class = "el" href = "iOstream_8hpp.html#a4f6dbbff761fa51344d4f7873a986880" > boldChar< / a > < < < a class = "el" href = "iOstream_8hpp.html#a5baf5737dcaddf5c26107d7ecce88533" > redColor< / a > < < " > ERROR\n" < < defaultColor< < < a class = "el" href = "iOstream_8hpp.html#a5baf5737dcaddf5c26107d7ecce88533" > redColor< / a > < < " " < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00046" > 46< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
2025-01-10 13:02:07 +03:30
< a id = "a4fe145765559e6dc61e1bcc2a5194331" > < / a >
< h2 class = "memtitle" > < span class = "permalink" > < a href = "#a4fe145765559e6dc61e1bcc2a5194331" > ◆ < / a > < / span > END_ERR< / h2 >
2023-03-27 10:16:23 -07:00
< div class = "memitem" >
< div class = "memproto" >
< table class = "memname" >
< tr >
2025-01-10 13:02:07 +03:30
< td class = "memname" > #define END_ERR      < a class = "el" href = "iOstream_8hpp.html#a08e5918c2f896d908122d37a353230c9" > defaultColor< / a > < < < a class = "el" href = "namespacepFlow.html#aba8f0c455a3fdb4b05ad33a25b13b189" > pFlow::endl< / a > < / td >
2023-03-27 10:16:23 -07:00
< / tr >
< / table >
< / div > < div class = "memdoc" >
2025-01-10 13:02:07 +03:30
< p class = "definition" > Definition at line < a class = "el" href = "streams_8hpp_source.html#l00047" > 47< / a > of file < a class = "el" href = "streams_8hpp_source.html" > streams.hpp< / a > .< / p >
2023-03-27 10:16:23 -07:00
< / div >
< / div >
< / div > <!-- contents -->
< / div > <!-- doc - content -->
< div id = "nav-path" class = "navpath" > <!-- id is needed for treeview function! -->
< ul >
< li class = "navelem" > < a class = "el" href = "dir_68267d1309a1af8e8297ef4c3efbcdba.html" > src< / a > < / li > < li class = "navelem" > < a class = "el" href = "dir_cd7a5046d028e114fc17b2ebc2bd02d2.html" > phasicFlow< / a > < / li > < li class = "navelem" > < a class = "el" href = "dir_b13948a90891cb8a59f39ab8c50a8102.html" > streams< / a > < / li > < li class = "navelem" > < a class = "el" href = "streams_8hpp.html" > streams.hpp< / a > < / li >
< li class = "footer" > Generated by
< a href = "http://www.doxygen.org/index.html" >
< img class = "footer" src = "doxygen.png" alt = "doxygen" / > < / a > 1.8.17 < / li >
< / ul >
< / div >
< / body >
< / html >