~ahayzen/ubuntu-calculator-app/autopilot-move-py3

50.1.1 by Gustavo Pichorim Boiko
Add missing copyright headers.
1
/*
2
 * Copyright 2013 Canonical Ltd.
3
 *
4
 * This file is part of ubuntu-calculator-app.
5
 *
6
 * ubuntu-calculator-app is free software; you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation; version 3.
9
 *
10
 * ubuntu-calculator-app is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 */
18
13.1.17 by Riccardo Ferrazzo
added some files
19
import QtQuick 2.0
20
21
ListModel {
22
    id: memory
23
24
    ListElement {
25
        isLastItem: true
26
        formula: ''
27
        answer: ''
28
        formula_data: ''
29
    }
30
}