2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #ifndef TIZENAPIS_API_APPLICATION_INFORMATION_H_
18 #define TIZENAPIS_API_APPLICATION_INFORMATION_H_
22 #include <dpl/log/log.h>
23 #include <dpl/shared_ptr.h>
27 namespace Application {
29 class ApplicationInformation;
30 typedef DPL::SharedPtr<ApplicationInformation> ApplicationInformationPtr;
32 typedef std::vector<ApplicationInformationPtr> ApplicationInformationArray;
33 typedef DPL::SharedPtr<ApplicationInformationArray> ApplicationInformationArrayPtr;
35 class ApplicationInformation
38 ApplicationInformation();
39 ~ApplicationInformation();
41 std::string getName() const;
42 void setName(const std::string &name);
43 std::string getPackage() const;
44 void setPackage(const std::string &package);
45 std::string getIconPath() const;
46 void setIconPath(const std::string &iconPath);
47 std::string getVersion() const;
48 void setVersion(const std::string &version);
52 std::string m_package;
53 std::string m_iconPath;
54 std::string m_version;