git-svn-id: svn://db.shs.com.ru/pip@176 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5
114 lines
6.3 KiB
HTML
114 lines
6.3 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.9.1"/>
|
|
<title>PIP: What is PIP</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>
|
|
<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 style="padding-left: 0.5em;">
|
|
<div id="projectname">PIP
|
|
 <span id="projectnumber">0.5.0_alpha</span>
|
|
</div>
|
|
<div id="projectbrief">Platform-Independent Primitives</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- end header part -->
|
|
<!-- Generated by Doxygen 1.8.9.1 -->
|
|
<div id="navrow1" class="tabs">
|
|
<ul class="tablist">
|
|
<li class="current"><a href="index.html"><span>Main Page</span></a></li>
|
|
<li><a href="pages.html"><span>Related Pages</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>
|
|
</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('index.html','');});
|
|
</script>
|
|
<div id="doc-content">
|
|
<div class="header">
|
|
<div class="headertitle">
|
|
<div class="title">What is PIP </div> </div>
|
|
</div><!--header-->
|
|
<div class="contents">
|
|
<div class="textblock"><p>PIP - Platform-Independent Primitives - is crossplatform library for C++ developers. It is wrap around STL and pure C++. This library can help developers write non-GUI projects much more quickly, efficiently and customizable than on pure C++. Library contains many classes, some of them are pure abstract, some classes can be used as they are, some classes should be inherited to new classes. PIP provide classes:</p><ul>
|
|
<li>direct output to console (<em><a class="el" href="class_p_i_cout.html" title="Class for formatted output similar std::cout. ">PICout</a></em>)</li>
|
|
<li>containers (<em><a class="el" href="class_p_i_vector.html" title="Dynamic array of any type. ">PIVector</a></em>, <em>PIList</em>, <em>PIMap</em>, <em>PIStack</em>)</li>
|
|
<li>byte array (<em><a class="el" href="class_p_i_byte_array.html" title="Byte array. ">PIByteArray</a></em>)</li>
|
|
<li>string (<em><a class="el" href="class_p_i_string.html" title="String class. ">PIString</a></em>, <em><a class="el" href="class_p_i_string_list.html" title="Strings array class. ">PIStringList</a></em>)</li>
|
|
<li>base object (events and handlers) (<em><a class="el" href="class_p_i_object.html" title="This is base class for any classes which use events -> handlers mechanism. ">PIObject</a></em>)</li>
|
|
<li>thread (<em><a class="el" href="class_p_i_thread.html" title="Thread class. ">PIThread</a></em>)</li>
|
|
<li>timer (<em><a class="el" href="class_p_i_timer.html" title="Timer. ">PITimer</a></em>)</li>
|
|
<li>console (information output) (<em><a class="el" href="class_p_i_console.html" title="Console output class. ">PIConsole</a></em>)<ul>
|
|
<li>stand-alone</li>
|
|
<li>server</li>
|
|
<li>client</li>
|
|
</ul>
|
|
</li>
|
|
<li>I/O devices<ul>
|
|
<li>base class (<em><a class="el" href="class_p_i_i_o_device.html" title="Base class for input/output classes. ">PIIODevice</a></em>)</li>
|
|
<li>file (<em><a class="el" href="class_p_i_file.html" title="Local file. ">PIFile</a></em>)</li>
|
|
<li>serial port (<em><a class="el" href="class_p_i_serial.html" title="Serial device. ">PISerial</a></em>)</li>
|
|
<li>ethernet (<em><a class="el" href="class_p_i_ethernet.html" title="Ethernet device. ">PIEthernet</a></em>)</li>
|
|
<li>USB (<em>PIUSB</em>)</li>
|
|
<li>packets extractor (<em><a class="el" href="class_p_i_packet_extractor.html" title="Packets extractor. ">PIPacketExtractor</a></em>)</li>
|
|
<li>binary log (<em><a class="el" href="class_p_i_binary_log.html" title="Class for read and write binary data to logfile, and playback this data in realtime, or custom speed. ">PIBinaryLog</a></em>)</li>
|
|
<li>complex I/O point (<em><a class="el" href="class_p_i_connection.html" title="Complex Input/Output point. ">PIConnection</a></em>)</li>
|
|
</ul>
|
|
</li>
|
|
<li>connection quality diagnotic (<em><a class="el" href="class_p_i_diagnostics.html" title="Connection quality diagnostics. ">PIDiagnostics</a></em>)</li>
|
|
<li>command-line arguments parser (<em><a class="el" href="class_p_i_c_l_i.html" title="Command-line arguments parser. ">PICLI</a></em>)</li>
|
|
<li>math evaluator (<em><a class="el" href="class_p_i_evaluator.html" title="This class provide mathematical evaluations of custom expression. ">PIEvaluator</a></em>)</li>
|
|
<li>peering net node (<em>PIPeer</em>)</li>
|
|
<li>process (<em><a class="el" href="class_p_i_process.html">PIProcess</a></em>)</li>
|
|
<li>state machine (<em><a class="el" href="class_p_i_state_machine.html" title="Base class for custom state machine. ">PIStateMachine</a></em>) <br />
|
|
<br />
|
|
Basic using of PIP described at page <a class="el" href="using_basic.html">Getting started</a> </li>
|
|
</ul>
|
|
</div></div><!-- contents -->
|
|
</div><!-- doc-content -->
|
|
<!-- start footer part -->
|
|
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
|
|
<ul>
|
|
<li class="footer">Generated on Sat Jan 30 2016 21:43:29 for PIP by
|
|
<a href="http://www.doxygen.org/index.html">
|
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|