diff options
author | jinwoo.shin <jw0227.shin@samsung.com> | 2015-06-29 15:51:13 +0900 |
---|---|---|
committer | jinwoo.shin <jw0227.shin@samsung.com> | 2015-06-29 15:56:34 +0900 |
commit | d52f95790faec075078afa7418c7e01f83f425f5 (patch) | |
tree | 74cf36054003d5baa6d178d4244f08ef62f82f4d /include | |
parent | 8c596d6cee9099df0fe6c78d106672ebc71042cf (diff) | |
download | air_livetv-d52f95790faec075078afa7418c7e01f83f425f5.tar.gz air_livetv-d52f95790faec075078afa7418c7e01f83f425f5.tar.bz2 air_livetv-d52f95790faec075078afa7418c7e01f83f425f5.zip |
Initifal commit
Change-Id: I4dd1bf891eff98d34f577d6384cc3c401733a220
Signed-off-by: jinwoo.shin <jw0227.shin@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/define.h | 24 | ||||
-rw-r--r-- | include/main_view.h | 22 |
2 files changed, 46 insertions, 0 deletions
diff --git a/include/define.h b/include/define.h new file mode 100644 index 0000000..42bb0dd --- /dev/null +++ b/include/define.h @@ -0,0 +1,24 @@ +/* + * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __LIVETV_DEFINE_H__ +#define __LIVETV_DEFINE_H__ + +#define VIEW_MAIN "VIEW_MAIN" +#define GRP_MAIN_VIEW "grp.main.view" +#define PART_CONTENT "part.content" + +#endif /* __LIVETV_DEFINE_H__*/ diff --git a/include/main_view.h b/include/main_view.h new file mode 100644 index 0000000..6beb35d --- /dev/null +++ b/include/main_view.h @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef __LIVETV_MAIN_VIEW_H__ +#define __LIVETV_MAIN_VIEW_H__ + +view_class *view_main_get_vclass(void); + +#endif /* __LIVETV_MAIN_VIEW_H__*/ |