-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
<H2> | ||
MUSCLE: Crossbar Server, Portable Messaging and Support Classes<p> | ||
9/22/2022 v9.00 [email protected]<p> | ||
10/27/2022 v9.00 [email protected]<p> | ||
Jeremy Friesner / Meyer Sound Laboratories Inc.<p> | ||
Win32 compatibility contributions by Vitaliy Mikitchenko<p> | ||
C# client code by Wilson Yeung<p> | ||
|
@@ -251,6 +251,8 @@ <H2> | |
<p> | ||
<table> | ||
<tr><td><a href="support/BitChord.h">BitChord</a></td><td>Implements an ordered set of N individually-settable binary bits</td></tr> | ||
<tr><td><a href="support/DataFlattener.h">DataFlattener</a></td><td>A lightweight helper-object for writing out endian-encoded data to a raw binary buffer.</td></tr> | ||
<tr><td><a href="support/DataUnflattener.h">DataUnflattener</a></td><td>A lightweight helper-object for reading in endian-encoded data from a raw binary buffer.</td></tr> | ||
<tr><td><a href="support/Flattenable.h">Flattenable</a></td><td>Interface for an object that can be "Flattened" into a serialized-binary representation, and Unflattened back again</td></tr> | ||
<tr><td><a href="support/PseudoFlattenable.h">PseudoFlattenable</a></td><td>Same as Flattenable, but without the virtual methods. Used as a tag for objects that can be flattened without runtime polymorphism</td></tr> | ||
<tr><td><a href="support/NotCopyable.h">NotCopyable</a></td><td>Inheriting from this class tells the compiler not to allow copies to made of objects of your subclass</td></tr> | ||
|
@@ -385,8 +387,6 @@ <H2> | |
<table> | ||
<tr><td><a href="util/BatchOperator.h">BatchOperator</a></td><td>An RAII mechanism for ensuring that a specified method gets called on the first-level recursion into a call tree, and that a matching method gets called on the final recursion out of the call tree.</td></tr> | ||
<tr><td><a href="util/ByteBuffer.h">ByteBuffer</a></td><td>An intelligent byte-array class, that stores its length, knows how to resize itself efficiently, is reference-countable and flattenable, etc.</td></tr> | ||
<tr><td><a href="util/DataFlattener.h">DataFlattener</a></td><td>A lightweight helper-object for writing out endian-encoded data to a raw binary buffer.</td></tr> | ||
<tr><td><a href="util/DataUnflattener.h">DataUnflattener</a></td><td>A lightweight helper-object for reading in endian-encoded data from a raw binary buffer.</td></tr> | ||
<tr><td><a href="util/CountedObject.h">CountedObject</a></td><td>A class that other classes can be derived from if you want to keep track of how many instances of them are in memory at any given time.</td></tr> | ||
<tr><td><a href="util/CPULoadMeter.h">CPULoadMeter</a></td><td>Reports the percentage of CPU time being used on the local computer from moment to moment.</td></tr> | ||
<tr><td><a href="util/Directory.h">Directory</a></td><td>a platform-neutral API for scanning a filesystem directory and iterating over its contents.</td></tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<HTML> | ||
<HEAD> | ||
<H1>MUSCLE Overview and Beginner's Guide</H1> | ||
<H4>v8.70 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 9/22/2022</H4> | ||
<H4>v9.00 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 10/27/2022</H4> | ||
<A HREF="https://public.msli.com/lcs/muscle/html/index.html">Click here for DOxygen class API documentation</A><p> | ||
<A HREF="https://public.msli.com/lcs/muscle/muscle/html/muscle-by-example/site/index.html">Click here for the MUSCLE-by-example tour</A> | ||
</HEAD> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<HTML> | ||
<HEAD> | ||
<H1>Implementing a Custom Server with MUSCLE</H1> | ||
<H4>v8.70 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 9/22/2022</H4> | ||
<H4>v9.00 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 10/27/2022</H4> | ||
</HEAD> | ||
<BODY bgcolor=#ffffff> | ||
<H2>Introduction</H2> | ||
|