lime
Lime is a C++ library implementing Open Whisper System Signal protocol
constructor.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <jni/method.hpp>
4
5namespace jni
6 {
7 template < class TagType, class... Args >
8 class Constructor : public Method<TagType, void (Args...)>
9 {
10 public:
11 Constructor(JNIEnv& env, const Class<TagType>& clazz)
12 : Method<TagType, void (Args...)>(env, clazz, "<init>")
13 {}
14 };
15 }
Definition: class.hpp:18
Definition: constructor.hpp:9
Constructor(JNIEnv &env, const Class< TagType > &clazz)
Definition: constructor.hpp:11
Definition: class.hpp:13
Definition: advanced_ownership.hpp:6