Adapt the AIL filter used to new ones
[profile/ivi/ico-uxf-homescreen.git] / lib / system-controller / CicoSCInputDev.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   CicoSCInputDev.cpp
13  *
14  *  @brief  This file is implementation of CicoSCInputDev class
15  */
16 //==========================================================================
17
18 #include <string>
19 #include <vector>
20 using namespace std;
21
22 #include "CicoSCInputDev.h"
23 #include "CicoLog.h"
24
25 //--------------------------------------------------------------------------
26 /**
27  *  @brief  default constructor
28  */
29 //--------------------------------------------------------------------------
30 CicoSCInputDev::CicoSCInputDev()
31     : device(""), type(-1)
32 {
33 }
34
35 //--------------------------------------------------------------------------
36 /**
37  *  @brief  destructor
38  */
39 //--------------------------------------------------------------------------
40 CicoSCInputDev::~CicoSCInputDev()
41 {
42 }
43
44 //--------------------------------------------------------------------------
45 /**
46  *  @brief  dump log this class member variables
47  */
48 //--------------------------------------------------------------------------
49 void
50 CicoSCInputDev::dump(void)
51 {
52     ICO_DBG("CicoSCInputDev: device=%d type=%d", device.c_str(), type);
53 }
54 // vim:set expandtab ts=4 sw=4: