f4295f68aceef7ae66016a4373aa65c6fcc3449e
[profile/ivi/ico-uxf-homescreen.git] / lib / system-controller / CicoSCUser.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   CicoSCUser.cpp
13  *
14  *  @brief  This file implementation of CicoSCUser class
15  */
16 /*========================================================================*/
17
18 #include "CicoSCUser.h"
19 #include "CicoLog.h"
20
21 //--------------------------------------------------------------------------
22 /**
23  *  @brief  default constructor
24  */
25 //--------------------------------------------------------------------------
26 CicoSCUser::CicoSCUser()
27     : name(""), passwd(""), homescreen(""), autolaunch(true)
28 {
29 }
30
31 //--------------------------------------------------------------------------
32 /**
33  *  @brief  destructor
34  */
35 //--------------------------------------------------------------------------
36 CicoSCUser::~CicoSCUser()
37 {
38 }
39
40 //--------------------------------------------------------------------------
41 /**
42  *  @brief  dump log this class member variables
43  */
44 //--------------------------------------------------------------------------
45 void
46 CicoSCUser::dump(void)
47 {
48     ICO_DBG("CicoSCUser: name=%s, pass=%s, homescreen=%s autolaunch=%s",
49             name.c_str(), passwd.c_str(), homescreen.c_str(),
50             autolaunch ? "true" : "false");
51 }
52 // vim:set expandtab ts=4 sw=4: