/usr/include/aqbanking5/aqbankingpp/time.hpp is in libaqbanking34-dev 5.4.3beta-2+b1.
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | /***************************************************************************
$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_TIME_HPP
#define AB_TIME_HPP
#include <gwenhywfar/gwentime.h>
#include <aqbankingpp/cxxwrap.hpp>
namespace AB
{
/** A wrapper class around the GWEN_TIME type */
class Time
{
public:
typedef GWEN_TIME wrapped_type;
private:
wrapped_type* m_ptr;
public:
Time(int year,
int month,
int day,
int hour,
int min,
int sec,
int inUtc)
: m_ptr(GWEN_Time_new(year, month, day,
hour, min, sec, inUtc))
{}
AB_CXXWRAP_CONSTRUCTORS(Time, GWEN_Time);
uint32_t AB_CXXWRAP_GET0_CONST(seconds, GWEN_Time_Seconds);
double AB_CXXWRAP_GET0_CONST(milliseconds, GWEN_Time_Milliseconds);
struct tm AB_CXXWRAP_GET0_CONST(toTm, GWEN_Time_toTm);
time_t AB_CXXWRAP_GET0_CONST(toTime_t, GWEN_Time_toTime_t);
/**
* Returns the broken down date as local date.
*/
int getBrokenDownDate(int& day, int& month, int& year)
{
return GWEN_Time_GetBrokenDownDate(m_ptr, &day, &month, &year);
}
/**
* Returns the broken down time as UTC date (Greenwhich Mean time).
*/
int getBrokenDownUtcDate(int& day, int& month, int& year)
{
return GWEN_Time_GetBrokenDownUtcDate(m_ptr, &day, &month, &year);
}
static Time currentTime()
{
return GWEN_CurrentTime();
}
};
} // END namespace AB
#endif // AB_TIME_HPP
|