All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ImageUploadData.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include <string>
6 
7 namespace Eegeo
8 {
9  namespace Web
10  {
12  {
13  enum ImageType
14  {
15  JPEG,
16  PNG
17  };
18 
20  : path("")
21  , filename("")
22  , type(JPEG)
23  {}
24 
25  ImageUploadData(const std::string& path,
26  const std::string& filename,
27  const ImageType& type)
28  : path(path)
29  , filename(filename)
30  , type(type)
31  {
32 
33  }
34 
35  std::string path;
36  std::string filename;
37  ImageType type;
38  };
39  }
40 }