Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/makelocaltime.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __MAKELOCALTIME_H__
8#define __MAKELOCALTIME_H__
9
10#include <time.h>
11
12namespace Helpers
13{
32 struct tm* makelocaltime(const time_t* time, struct tm* timestruct);
33
34} // end namespace
35
36#endif // __MAKELOCALTIME_H__
The namespace containing all the "helper" functions in the C++ code.
struct tm * makelocaltime(const time_t *time, struct tm *timestruct)
Convert the given time to local time.