Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Mediacontent / MediacontentImage.h
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. 
15 */
16
17
18
19 #ifndef _ABSTRACT_LAYER_MEDIACONTENT_IMAGE_H_
20 #define _ABSTRACT_LAYER_MEDIACONTENT_IMAGE_H_
21
22 #include <ctime>
23 #include <string>
24 #include <vector>
25 #include <dpl/optional.h>
26 #include <dpl/shared_ptr.h>
27 #include "MediacontentMedia.h"
28
29 using namespace std;
30
31 namespace TizenApis {
32 namespace Api {
33 namespace Mediacontent {
34
35 class MediacontentImage : public MediacontentMedia
36 {
37         public:
38
39         MediacontentImage();
40         virtual         ~MediacontentImage();
41
42         int getImageWidth() const;
43         int getImageHeight() const;
44         string getImageOrientation() const;
45         double getImageLatitude() const;
46         double getImageLongitude() const;
47
48
49         void setImageWidth(const int &value);   
50         void setImageHeight(const int &value);  
51         void setImageOrientation(const string &value);          
52         void setImageLatitude(const double &value);
53         void setImageLongitude(const double &value);    
54
55         void display();
56
57         protected:
58         int m_imageWidth;
59         int m_imageHeight;
60         string m_imageOrientation;              
61         double m_imageLongitude;
62         double m_imageLatitude; 
63
64 };
65
66 typedef DPL::SharedPtr<MediacontentImage> MediacontentImagePtr;
67
68
69 }
70 }
71 }
72
73 #endif /* _ABSTRACT_LAYER_MEDIACONTENT_MEDIA_H_ */
74