- Timestamp:
- 09/09/11 10:10:28 (13 years ago)
- Location:
- trunk/FACT++/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/QCameraWidget.cc
r12051 r12054 2 2 #include <sstream> 3 3 #include <iostream> 4 5 using namespace std; 4 6 5 7 QCameraWidget::QCameraWidget(QWidget *pparent) : BasicGlCamera(pparent) -
trunk/FACT++/gui/QCameraWidget.h
r11997 r12054 6 6 #include <set> 7 7 8 9 using namespace std;10 11 8 class QCameraWidget : public BasicGlCamera 12 9 { 13 10 Q_OBJECT 14 11 15 typedef pair<double, double> Position;16 typedef vector<Position> Positions;12 typedef std::pair<double, double> Position; 13 typedef std::vector<Position> Positions; 17 14 18 15 //FIXME this variable seems to be deprecated 19 16 Positions fGeom; 20 17 21 vector<bool> fBold;22 vector<bool> fEnable;18 std::vector<bool> fBold; 19 std::vector<bool> fEnable; 23 20 24 vector<int> highlightedPatches;25 vector<int> highlightedPixels;21 std::vector<int> highlightedPatches; 22 std::vector<int> highlightedPixels; 26 23 27 24 … … 50 47 char *GetObjectInfo(int px, int py); 51 48 52 void SetData(const valarray<double> &ddata);53 void SetData(const valarray<float> &ddata);49 void SetData(const std::valarray<double> &ddata); 50 void SetData(const std::valarray<float> &ddata); 54 51 55 52
Note:
See TracChangeset
for help on using the changeset viewer.