-
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
111 changed files
with
824 additions
and
726 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> | ||
12/31/2024 v9.50 [email protected]<p> | ||
1/19/2025 v9.60 [email protected]<p> | ||
Jeremy Friesner / Meyer Sound Laboratories Inc.<p> | ||
Win32 compatibility contributions by Vitaliy Mikitchenko<p> | ||
C# client code by Wilson Yeung<p> | ||
|
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>v9.50 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 12/31/2024</H4> | ||
<H4>v9.60 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 1/19/2025</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>v9.50 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 12/31/2024</H4> | ||
<H4>v9.60 / Jeremy Friesner / Meyer Sound Laboratories Inc ([email protected]) 1/19/2025</H4> | ||
</HEAD> | ||
<BODY bgcolor=#ffffff> | ||
<H2>Introduction</H2> | ||
|
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# muscle::OutputPrinter class [(API)](https://public.msli.com/lcs/muscle/html/classmuscle_1_1OutputPrinter.html) | ||
|
||
```#include "util/OutputPrinter.h"``` | ||
|
||
[OutputPrinter](https://public.msli.com/lcs/muscle/html/classmuscle_1_1OutputPrinter.html) is a utility class for retargetting printf()-style text output to different destinations. | ||
|
||
* Code that otherwise would have called [printf() or fprintf()](https://man7.org/linux/man-pages/man3/fprintf.3.html) can call OutputPrinter::printf() instead. | ||
* By doing so, the code gains the ability to output to stdout, or stderr, or to any stdio FILE handle, or to a [String](https://public.msli.com/lcs/muscle/muscle/html/muscle-by-example/site/string/), or to the [MUSCLE Logging API](https://public.msli.com/lcs/muscle/muscle/html/muscle-by-example/site/logtime/), without further modifications. | ||
* OutputPrinter also supports automatic indentation of the generated text lines, for convenient visual nesting of hierarchical output. | ||
|
||
Try compiling and running the mini-example-programs in `muscle/html/muscle-by-example/examples/outputprinter` (enter `make` to compile example_*, and then run each from Terminal while looking at the corresponding .cpp file) | ||
|
||
Quick links to source code of relevant MUSCLE-by-example programs: | ||
|
||
* [outputprinter/example_1_basic_usage.cpp](https://public.msli.com/lcs/muscle/muscle/html/muscle-by-example/examples/outputprinter/example_1_basic_usage.cpp) | ||
* [outputprinter/example_2_indentation.cpp](https://public.msli.com/lcs/muscle/muscle/html/muscle-by-example/examples/outputprinter/example_2_indentation.cpp) |
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
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
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
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
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
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
Oops, something went wrong.