Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
platform
Web
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
{
11
struct
ImageUploadData
12
{
13
enum
ImageType
14
{
15
JPEG,
16
PNG
17
};
18
19
ImageUploadData
()
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
}
Generated on Sat Jun 10 2023 02:00:35 for eeGeo Platform SDK by
1.8.3.1