/* * Copyright (c) 2014 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. */ #include "dbg.h" #include "def.h" #include "stdbool.h" #include "viewmgr.h" #include "utils.h" #include "data_wrapper.h" #include "settings_provider.h" #include "view_maincatalog.h" #include "view_device_manager.h" static Evas_Object *_create(struct setting_mgr *mgr, struct settingview_data *view, void *prev) { /*TODO:Implement this function*/ return NULL; } static void _show(Evas_Object *base) { } static void _destroy(Evas_Object *base) { } static void _hide(Evas_Object *base) { } static struct setting_class _vclass = { .title = VCLASS_TITLE_DEVICE_MANAGER, .create = _create, .show = _show, .destroy = _destroy, .hide = _hide, .hide_view = 0 }; struct setting_class *view_device_manager_get_vclass(void) { return &_vclass; }