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 
5 namespace 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: advanced_ownership.hpp:5
Definition: class.hpp:17
Definition: class.hpp:13
Constructor(JNIEnv &env, const Class< TagType > &clazz)
Definition: constructor.hpp:11