File: graphdata.h

package info (click to toggle)
xdrawchem 1.0-0.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,820 kB
  • ctags: 2,389
  • sloc: cpp: 17,801; makefile: 263; ansic: 168
file content (14 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GRAPHDATA_H
#define GRAPHDATA_H

class GraphData {
 public:
  double value;
  QString label;
  QString fulltext;
  int intensity;
  bool drawlabel;
  GraphData() { drawlabel = false; intensity = 1; }
};

#endif