~gwibber-committers/gwibber/libgwibber-0.0

« back to all changes in this revision

Viewing changes to examples/get-features.vala

  • Committer: Ken VanDine
  • Date: 2010-06-04 02:12:26 UTC
  • Revision ID: ken.vandine@canonical.com-20100604021226-l9195zr1w8x0hpa3
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Ken VanDine
 
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 Ken VanDine <ken.vandine@canonical.com>
 
18
 */
 
19
 
 
20
void main() {
 
21
    var service = new Gwibber.Service();
 
22
    List<string> features = new List<string> ();
 
23
    features = service.GetFeatures ();
 
24
}