From OpenHome

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
{{nav_openhome_ohnet|ohNet - Developers}}
{{nav_openhome_ohnet|ohNet - Developers}}
=== Overview docs ===
=== Overview docs ===
-
* Control Point stack (PDF) [http://www.openhome.org/releases/ohNet_ControlPointStack.pdf]
+
* [http://www.openhome.org/releases/ohNet_ControlPointStack.pdf Control Point stack (PDF)]
-
* Device stack (PDF) [http://www.openhome.org/releases/ohNet_DeviceStack.pdf]
+
* [http://www.openhome.org/releases/ohNet_DeviceStack.pdf Device stack (PDF)]
=== API docs ===
=== API docs ===
-
* C++ [http://www.openhome.org/build/nightly/docs/CppStd/]
+
* [http://www.openhome.org/build/nightly/docs/CppStd/ C++]
-
* C# [http://www.openhome.org/build/nightly/docs/Cs/]
+
* [http://www.openhome.org/build/nightly/docs/Cs/ C#]
-
* Java [http://www.openhome.org/build/nightly/docs/Java/]
+
* [http://www.openhome.org/build/nightly/docs/Java/ Java]
-
* JavaScript [http://www.openhome.org/build/nightly/docs/Js/]
+
* [http://www.openhome.org/build/nightly/docs/Js/ JavaScript]
-
* C [http://www.openhome.org/build/nightly/docs/C/]
+
* [http://www.openhome.org/build/nightly/docs/C/ C]
 +
 
 +
=== Discussion ===
 +
[http://forums.openhome.org/forumdisplay.php?fid=5 Developer forum]
 +
 
 +
 
ohNet is written using C++ with std::string replaced by special buffer classes.  These buffer classes allow for more efficient use of memory at the cost of a steeper learning curve. Memory use benefits can be especially pronounced for the Device stack.  API docs [http://www.openhome.org/build/nightly/docs/CppCore/] for this version of the stack are available but the buffer classes are intended for internal use of the library and are as such currently undocumented.
ohNet is written using C++ with std::string replaced by special buffer classes.  These buffer classes allow for more efficient use of memory at the cost of a steeper learning curve. Memory use benefits can be especially pronounced for the Device stack.  API docs [http://www.openhome.org/build/nightly/docs/CppCore/] for this version of the stack are available but the buffer classes are intended for internal use of the library and are as such currently undocumented.

Revision as of 14:22, 2 September 2011

Overview docs

API docs

Discussion

Developer forum


ohNet is written using C++ with std::string replaced by special buffer classes. These buffer classes allow for more efficient use of memory at the cost of a steeper learning curve. Memory use benefits can be especially pronounced for the Device stack. API docs [1] for this version of the stack are available but the buffer classes are intended for internal use of the library and are as such currently undocumented.