aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/native/com_libmailcore_NNTPFetchServerTimeOperation.cpp
blob: 76e48e92bc44d87f02717d52ba4c101ef1909a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "com_libmailcore_NNTPFetchServerTimeOperation.h"

#include "MCBaseTypes.h"
#include "JavaHandle.h"
#include "TypesUtils.h"
#include "MCNNTPFetchServerTimeOperation.h"

using namespace mailcore;

#define nativeType NNTPFetchServerTimeOperation
#define javaType nativeType

JNIEXPORT jobject JNICALL Java_com_libmailcore_NNTPFetchServerTimeOperation_time
  (JNIEnv * env, jobject obj)
{
    return timeToJavaDate(env, MC_JAVA_NATIVE_INSTANCE->time());
}

MC_JAVA_BRIDGE