File: FileList.h

package info (click to toggle)
quickplot 0.8.6-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,548 kB
  • ctags: 1,019
  • sloc: cpp: 10,052; sh: 7,597; makefile: 176
file content (38 lines) | stat: -rw-r--r-- 679 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* Copyright (c) 1998, 1999, 2003, 2004  Lance Arsenault, (GNU GPL (v2+))
 */

// This is just to keep a list of filenames and there associated
// options.  This is just used in App_parseArgs.cpp.



class FileList
{
 public:

  FileList(char *filename=NULL);
  ~FileList(void);

  void setFileName(const char *filename);
  inline char *getFileName(void) const
    {
      return fileName;
    }

  // ASCII file options, ignored for other file types.
  count_t skipLines;
  bool readLabels;
  char labelSeparator;

  bool hasLinearField;
  value_t linearFieldStep, linearFieldStart;
  bool takeLog;

  FileList *next;
  static FileList *first;

 private:

  char *fileName;

};