Enhancement: exposure comp in preview's image info (issue 954)

This commit is contained in:
michael
2011-08-31 20:38:33 -04:00
parent d76f3c38c5
commit 24d0a1657b
4 changed files with 50 additions and 18 deletions

View File

@@ -42,6 +42,7 @@ class ImageData : public ImageMetaData {
double aperture;
double focal_len;
double shutter;
double expcomp;
std::string make, model, serial;
std::string orientation;
std::string lens;
@@ -65,6 +66,7 @@ class ImageData : public ImageMetaData {
double getFNumber () const { return aperture; }
double getFocalLen () const { return focal_len; }
double getShutterSpeed () const { return shutter; }
double getExpComp () const { return expcomp; }
std::string getMake () const { return make; }
std::string getModel () const { return model; }
std::string getLens () const { return lens; }