~kyrofa/junk/pay-service-2

« back to all changes in this revision

Viewing changes to service/token-grabber.h

  • Committer: CI bot
  • Author(s): Ted Gould
  • Date: 2014-06-18 18:47:04 UTC
  • mfrom: (8.1.10 devel)
  • Revision ID: ps-jenkins@lists.canonical.com-20140618184704-roe2dx6dwvvw37km
Fixes from integration work to make the pay demo come together. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *   Ted Gould <ted.gould@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef TOKEN_GRABBER_HPP__
 
21
#define TOKEN_GRABBER_HPP__ 1
 
22
 
 
23
#include <string>
 
24
#include <memory>
 
25
 
 
26
#include <core/signal.h>
 
27
 
 
28
class TokenGrabber
 
29
{
 
30
public:
 
31
    virtual std::string signUrl(std::string url, std::string type) = 0;
 
32
 
 
33
    typedef std::shared_ptr<TokenGrabber> Ptr;
 
34
 
 
35
    /* Signals */
 
36
    core::Signal<bool> tokenUpdated;
 
37
};
 
38
 
 
39
#endif /* TOKEN_GRABBER_HPP__ */