~ubuntu-branches/ubuntu/natty/libofx/natty

« back to all changes in this revision

Viewing changes to lib/ofx_request_accountinfo.hh

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2005-11-29 00:12:00 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051129001200-aplj8zbj80f68xby
Tags: 1:0.8.0-9
Generate autotools using Debian libtool (rerun libtoolize --copy
--force, aclocal-1.9, autoconf). (Closes: #341190)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          ofx_request_accountinfo.hh 
 
3
                             -------------------
 
4
    copyright            : (C) 2005 by Ace Jones
 
5
    email                : acejones@users.sourceforge.net
 
6
***************************************************************************/
 
7
/**@file
 
8
 * \brief Declaration of OfxRequestAccountInfo create an OFX file
 
9
 *   containing a request for all account info at this FI for this user.
 
10
*/
 
11
/***************************************************************************
 
12
 *                                                                         *
 
13
 *   This program is free software; you can redistribute it and/or modify  *
 
14
 *   it under the terms of the GNU General Public License as published by  *
 
15
 *   the Free Software Foundation; either version 2 of the License, or     *
 
16
 *   (at your option) any later version.                                   *
 
17
 *                                                                         *
 
18
 ***************************************************************************/
 
19
 
 
20
#ifndef OFX_REQ_ACCOUNTINFO_H
 
21
#define OFX_REQ_ACCOUNTINFO_H
 
22
 
 
23
#include <string>
 
24
#include "libofx.h"
 
25
#include "ofx_request.hh"
 
26
 
 
27
using namespace std;
 
28
 
 
29
/**
 
30
 * \brief An account information request
 
31
 *
 
32
 * This is an entire OFX aggregate, with all subordinate aggregates needed to log onto
 
33
 * the OFX server of a single financial institution and download a list of all accounts
 
34
 * for this user.
 
35
*/
 
36
 
 
37
class OfxAccountInfoRequest: public OfxRequest
 
38
{
 
39
public:
 
40
  /**
 
41
   * Creates the request aggregate to obtain an account list from this @p fi.
 
42
   *
 
43
   * @param fi The information needed to log on user into one financial
 
44
   *   institution
 
45
   */
 
46
  OfxAccountInfoRequest( const OfxFiLogin& fi );
 
47
};
 
48
 
 
49
#endif // OFX_REQ_ACCOUNTINFO_H