Sming Framework API
(1.2.0-1197-gfbe6fec4)
Toggle main menu visibility
Sming
Components
IFS
src
include
IFS
TimeStamp.h
Go to the documentation of this file.
1
20
#pragma once
21
22
#include <cstdint>
23
#include <time.h>
24
#include <cstring>
25
26
namespace
IFS
27
{
35
struct
TimeStamp
{
36
uint32_t
mValue
;
37
38
operator
time_t()
const
39
{
40
return
mValue
;
41
}
42
43
TimeStamp
&
operator=
(time_t t)
44
{
45
mValue = t;
46
return
*
this
;
47
}
48
};
49
50
}
// namespace IFS
IFS::TimeStamp::operator=
TimeStamp & operator=(time_t t)
Definition:
TimeStamp.h:43
IFS::TimeStamp::mValue
uint32_t mValue
Definition:
TimeStamp.h:36
IFS
Definition:
DirectoryTemplate.h:36
IFS::TimeStamp
Manage IFS timestamps stored as an unsigned 32-bit value.
Definition:
TimeStamp.h:35
Generated by
1.8.13