3efde680dea1e8c70f212e6761765b26ef4e8f34
[profile/ivi/ico-uxf-homescreen.git] / lib / system-controller / CicoSCLayer.cpp
1 /*
2  * Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  */
9
10 /*========================================================================*/
11 /**
12  *  @file   CicoSCLayer.h
13  *
14  *  @brief  
15  */
16 /*========================================================================*/
17
18 #include "CicoSCLayer.h"
19 #include "CicoLog.h"
20
21 //--------------------------------------------------------------------------
22 /**
23  *  @brief  default constructor
24  */
25 //--------------------------------------------------------------------------
26 CicoSCLayer::CicoSCLayer()
27 {
28 }
29
30 //--------------------------------------------------------------------------
31 /**
32  *  @brief  destructor
33  */
34 //--------------------------------------------------------------------------
35 CicoSCLayer::~CicoSCLayer()
36 {
37 }
38
39 //--------------------------------------------------------------------------
40 /**
41  *  @brief  dump log CicoSCLayer member variables
42  */
43 //--------------------------------------------------------------------------
44 void
45 CicoSCLayer::dump(void)
46 {
47     ICO_DBG("CicoSCLayer: layerid=%d type=%d width=%d height=%d "
48             "displayid =%d menuoverlap=%s",
49             layerid, type, width, height, displayid,
50             menuoverlap ? "true" : "false");
51 }
52 // vim:set expandtab ts=4 sw=4: