~bregma/unity-lens-friends/lp-1056204

« back to all changes in this revision

Viewing changes to src/stream-model-schema.vala

  • Committer: Ken VanDine
  • Date: 2013-02-25 15:09:57 UTC
  • Revision ID: ken.vandine@canonical.com-20130225150957-md8l8kx6hmw41n40
We didn't need stream-model-schema.vala, it makes more sense to define the schema in the same class as the results schema.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2010 Neil Jagdish Patel
3
 
 *
4
 
 * This library is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU Lesser General Public License
6
 
 * version 3.0 as published by the Free Software Foundation.
7
 
 *
8
 
 * This library is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.    See the
11
 
 * GNU Lesser General Public License version 3.0 for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public
14
 
 * License along with this library. If not, see
15
 
 * <http://www.gnu.org/licenses/>.
16
 
 *
17
 
 * Authored by Neil Jagdish Patel <njpatel@gmail.com>
18
 
 */
19
 
 
20
 
namespace Friends
21
 
{
22
 
    public enum StreamModelColumn
23
 
    {
24
 
        MESSAGE_IDS,
25
 
        STREAM,
26
 
        SENDER,
27
 
        SENDER_ID,
28
 
        SENDER_NICK,
29
 
        FROM_ME,
30
 
        TIMESTAMP,
31
 
        MESSAGE,
32
 
        ICON_URI,
33
 
        URL,
34
 
        LIKES,
35
 
        LIKED,
36
 
        LINK_PICTURE,
37
 
        LINK_NAME,
38
 
        LINK_URL,
39
 
        LINK_DESC,
40
 
        LINK_CAPTION,
41
 
        LINK_ICON
42
 
    }
43
 
}