~elementary-apps/gsignond-extension-pantheon/trunk

« back to all changes in this revision

Viewing changes to src/ProviderPlugin.vala

  • Committer: Corentin Noël
  • Date: 2014-10-31 21:50:02 UTC
  • Revision ID: corentin@elementaryos.org-20141031215002-y1odzcdts4727vgh
Now separated from the plug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- Mode: vala; indent-tabs-mode: nil; tab-width: 4 -*-
2
 
/*-
3
 
 * Copyright (c) 2013 Pantheon Developers (http://launchpad.net/online-accounts-plug)
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library 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 GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
19
 
 *
20
 
 * Authored by: Corentin Noël <tintou@mailoo.org>
21
 
 */
22
 
 
23
 
public abstract class OnlineAccounts.ProviderPlugin : GLib.Object {
24
 
    public string plugin_name { get; construct; }
25
 
    public string provider_name { get; construct; }
26
 
    
27
 
    public abstract void get_user_name (OnlineAccounts.Account account);
28
 
    public abstract void get_user_image (OnlineAccounts.Account account);
29
 
 
30
 
}
 
 
b'\\ No newline at end of file'