improved history implementation

This commit is contained in:
Juha Heinanen
2018-05-30 08:47:49 +03:00
parent a83e75c2b6
commit d6ddbdc771
2 changed files with 13 additions and 8 deletions
@@ -1,10 +1,12 @@
package com.tutpro.baresip
class HistoryRow(val peerURI: String, val direction: Int, val time: String) {
class HistoryRow(val peerURI: String, val direction: Int, val time: String, val index: Int) {
val directions = ArrayList<Int>()
val indexes = ArrayList<Int>()
init {
directions.add(direction)
indexes.add(index)
}
}