/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/datahandler.php

  • Committer: Suren A. Chilingaryan
  • Date: 2008-08-15 02:06:09 UTC
  • Revision ID: csa@dside.dyndns.org-20080815020609-1frxu8ug108968ba
Support for export to the National Instruments TDMS format

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    $this->vector_length = $vector_length;
91
91
    $this->processed_vectors = 0;
92
92
 } 
93
 
 function HeaderStart($flags = 0) {
94
 
 }
95
 
 function TimeHeader($flags = 0) {
96
 
 }
97
 
 function DataHeader(&$header, $i, $flags = 0) {
98
 
 }
99
 
 function HeaderEnd($flags = 0) {
100
 
 }
101
 
 function VectorStart($flags = 0) {
102
 
 }
103
 
 function VectorEnd($flags = 0) {
 
93
 
 
94
 function DataHeaders(&$names, $flags = 0) {
 
95
 }
 
96
 
 
97
 function DataVector(&$time, &$values, $flags = 0) {
104
98
    $this->processed_vectors++;
105
99
 }
 
100
 
106
101
 function End($flags = 0) {
107
102
 }
108
103