blob: 6ee19ae75a8dbb734117c9d3698a79352d60fe17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PYTHONIC_INCLUDE_TIME_TIME_HPP
#define PYTHONIC_INCLUDE_TIME_TIME_HPP
#include "pythonic/include/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace time
{
double time();
DEFINE_FUNCTOR(pythonic::time, time)
}
PYTHONIC_NS_END
#endif
|