|
2 | 2 | using System.Runtime.InteropServices; |
3 | 3 | using System.Collections; |
4 | 4 |
|
5 | | -/** |
6 | | -* C# API for the lab streaming layer. |
7 | | -* |
8 | | -* The lab streaming layer provides a set of functions to make instrument data accessible |
9 | | -* in real time within a lab network. From there, streams can be picked up by recording programs, |
10 | | -* viewing programs or custom experiment applications that access data streams in real time. |
11 | | -* |
12 | | -* The API covers two areas: |
13 | | -* - The "push API" allows to create stream outlets and to push data (regular or irregular measurement |
14 | | -* time series, event data, coded audio/video frames, etc.) into them. |
15 | | -* - The "pull API" allows to create stream inlets and read time-synched experiment data from them |
16 | | -* (for recording, viewing or experiment control). |
17 | | -* |
18 | | -*/ |
| 5 | + |
19 | 6 | namespace LSL { |
| 7 | + /// <summary> |
| 8 | + /// C# API for the lab streaming layer. |
| 9 | + /// |
| 10 | + /// The lab streaming layer provides a set of functions to make instrument data accessible |
| 11 | + /// in real time within a lab network. From there, streams can be picked up by recording programs, |
| 12 | + /// viewing programs or custom experiment applications that access data streams in real time. |
| 13 | + /// |
| 14 | + /// The API covers two areas: |
| 15 | + /// - The "push API" allows to create stream outlets and to push data (regular or irregular measurement |
| 16 | + /// time series, event data, coded audio/video frames, etc.) into them. |
| 17 | + /// - The "pull API" allows to create stream inlets and read time-synched experiment data from them |
| 18 | + /// (for recording, viewing or experiment control). |
| 19 | + /// |
| 20 | + /// </summary> |
20 | 21 |
|
21 | 22 | public class liblsl |
22 | 23 | { |
|
0 commit comments