source: trunk/Packages/CoolStreaming/UVarBlockProxy.pas

Last change on this file was 23, checked in by chronos, 12 years ago
  • Přidáno: Rozpracovaná třídy pro komunikaci s přístupovým terminálem BF-630. Přiložen popis protokolu.
File size: 351 bytes
Line 
1unit UVarBlockProxy;
2
3{$mode delphi}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils, UVarBlockSerializer;
9
10type
11 TTimedValue = record
12 Time: TDateTime;
13 Value: Variant;
14 end;
15
16 TVarBlockProxy = class
17 Blocks: TVarBlockIndexed;
18 Ages: TListDateTime;
19 procedure Read(MaxAge: Integer):
20 end;
21
22implementation
23
24end.
25
Note: See TracBrowser for help on using the repository browser.