This file is indexed.

/usr/include/aqbanking5/aqbankingpp/balance.hpp is in libaqbanking-dev 5.6.4beta-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/***************************************************************************
 $RCSfile$
                             -------------------
    begin       : Mon March 2 2011
    copyright   : (C) 2011 by Christian Stimming
    email       : christian@cstimming.de

 ***************************************************************************
 * This file is part of the project "AqBanking".                           *
 * Please see toplevel file COPYING of that project for license details.   *
 ***************************************************************************/


#ifndef AB_BALANCE_HPP
#define AB_BALANCE_HPP

#include <aqbanking/balance.h>

#include <aqbankingpp/cxxwrap.hpp>
#include <aqbankingpp/time.hpp>
#include <aqbankingpp/value.hpp>
  
namespace AB
{

/** A wrapper class around the \ref AB_BALANCE type */
class Balance
{
public:
  typedef AB_BALANCE wrapped_type;
private:
  wrapped_type* m_ptr;
public:

  Balance(const Value& v, const Time& t)
	: m_ptr(AB_Balance_new(v, t))
  {}
  AB_CXXWRAP_CONSTRUCTORS(Balance, AB_Balance);
  Value AB_CXXWRAP_GET0_CONST(getValue, AB_Balance_GetValue);
  AB_CXXWRAP_SET1(setValue, const Value&, AB_Balance_SetValue);
  const GWEN_TIME *AB_CXXWRAP_GET0_CONST(getTime, AB_Balance_GetTime);
};

} // END namespace AB

#endif // AB_BALANCE_HPP