~kyrofa/junk/pay-service-2

« back to all changes in this revision

Viewing changes to tests/token-grabber-null.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_NULL_HPP__
 
21
#define TOKEN_GRABBER_NULL_HPP__ 1
 
22
 
 
23
#include "service/token-grabber.h"
 
24
 
 
25
class TokenGrabberNull : public TokenGrabber
 
26
{
 
27
public: 
 
28
        virtual std::string signUrl (std::string url, std::string type)
 
29
        {
 
30
                std::string retval;
 
31
                return retval;
 
32
        }
 
33
};
 
34
 
 
35
#endif /* TOKEN_GRABBER_NULL_HPP__ */
 
36