File: ofx_request_accountinfo.hh

package info (click to toggle)
libofx 1%3A0.9.10-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 11,192 kB
  • sloc: sh: 11,428; cpp: 6,240; ansic: 2,459; makefile: 170; xml: 61
file content (49 lines) | stat: -rw-r--r-- 1,853 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/***************************************************************************
                          ofx_request_accountinfo.hh
                             -------------------
    copyright            : (C) 2005 by Ace Jones
    email                : acejones@users.sourceforge.net
***************************************************************************/
/**@file
 * \brief Declaration of OfxRequestAccountInfo create an OFX file
 *   containing a request for all account info at this FI for this user.
*/
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef OFX_REQ_ACCOUNTINFO_H
#define OFX_REQ_ACCOUNTINFO_H

#include <string>
#include "libofx.h"
#include "ofx_request.hh"

using namespace std;

/**
 * \brief An account information request
 *
 * This is an entire OFX aggregate, with all subordinate aggregates needed to log onto
 * the OFX server of a single financial institution and download a list of all accounts
 * for this user.
*/

class OfxAccountInfoRequest: public OfxRequest
{
public:
  /**
   * Creates the request aggregate to obtain an account list from this @p fi.
   *
   * @param fi The information needed to log on user into one financial
   *   institution
   */
  OfxAccountInfoRequest( const OfxFiLogin& fi );
};

#endif // OFX_REQ_ACCOUNTINFO_H