DataStreamInterfaceTest and DataStreamMeter projects added

This commit is contained in:
Milan Hanajik
2020-09-09 10:00:23 +02:00
parent 49d4cf1ac0
commit 97ce601d31
45 changed files with 3877 additions and 16 deletions
+2 -2
View File
@@ -7,12 +7,12 @@ namespace DataStreamInterface
{
public class DataFrame
{
public readonly UInt64 ID; /// Frame ID
public readonly Int64 ID; /// Frame ID
public readonly double Time; /// Time stamp in units of time
public readonly double Volume; /// Volume in units of volume
public readonly double[] Quantity; /// An array of optional quantities in their respective units
public DataFrame(UInt64 id, double time, double volume, double[] quantity)
public DataFrame(Int64 id, double time, double volume, double[] quantity)
{
ID = id;
Time = time;