My Project
 All Classes Functions Variables Pages
DataTif.h
1 
2 #include <stdio.h>
3 #include <stdlib.h>
4 
5 class DataTif{
6 public:
7  DataTif(char** files, int filecount, char* newfilename,
8  bool shellused, double shelltabing,
9  double coreshell, double shellbrightness);
10  DataTif(char* newfilename);
11  DataTif(unsigned char*** data, int lines, int columns, int csheet,
12  char* dest);
13  ~DataTif();
14 private:
15  double cs; // upper core shell value
16  double ss; // shell spacing value
17  double shellI; //Maximale Schalenhelligkeit
18  int useshell;
19  void colorgradient(double x,double xmin,double xmax,unsigned char* R,
20  unsigned char* G,unsigned char* B);
21  unsigned int header(FILE* f);
22  unsigned int IFD(FILE* f, unsigned int co, int width, int height,
23  short furtherIFD);
24 };
Definition: DataTif.h:5