summaryrefslogtreecommitdiff
path: root/lib/log/CallDurationItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/log/CallDurationItem.h')
-rw-r--r--lib/log/CallDurationItem.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/lib/log/CallDurationItem.h b/lib/log/CallDurationItem.h
deleted file mode 100644
index 8f82ad1..0000000
--- a/lib/log/CallDurationItem.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright 2012-2013 Samsung Electronics Co., Ltd
- *
- * Licensed under the Flora License, Version 1.1 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://floralicense.org/license/
- *
- * 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 __CALL_DURATION_ITEM_H__
-#define __CALL_DURATION_ITEM_H__
-
-#include <string>
-#include "Genlist.h"
-#include "CallDurationCounter.h"
-
-namespace Phone
-{
- namespace Logs
- {
- /*
- * \par Description:
- * Genlist item for CallDurationView.
- *
- * @see Ui::Genlist::Item
- */
- class CallDurationItem : public Ui::Genlist::Item
- {
- public:
- /*
- * @param counter The source of counters data
- * @param type A counter to get values from
- * @param label A label for the counter data
- */
- CallDurationItem(CallDurationCounter *counter,
- CallDurationCounter::CounterType type,
- const char *label);
-
- /*
- * @see Ui::Genlist::Item::getClass
- */
- Elm_Genlist_Item_Class * getClass() const;
-
- /*
- * @see Ui::Genlist::Item::getText
- */
- char * getText(const char *part) const;
-
- private:
- CallDurationCounter *m_Counter;
- CallDurationCounter::CounterType m_Type;
- std::string m_Label;
- };
- }
-}
-
-#endif /* __CALL_DURATION_ITEM_H__ */