gastro  0.1.0
 All Classes Files Functions Variables Pages
shoot.h
1 #ifndef SHOOT__H
2 #define SHOOT__H
3 
4 
5 #include "ccd.h"
6 #include <vector.h>
7 
8 
9 class StringList;
10 
11 class Shoot {
12 
13  private:
14  std::vector<Ccd*> ccd;
15 
16  public:
18  Shoot(const StringList &DbImageNames, const Point *TangentPoint = NULL);
19  const Ccd& Ccd(const int i);
20 
21 };