Djinni Library  2.0.0
Cross-Platform Library
example.hpp
Go to the documentation of this file.
1// AUTOGENERATED FILE - DO NOT MODIFY!
2// This file was generated by Djinni from my_djinni_library.djinni
3
4#pragma once
5
6#include <memory>
7#include <string>
8
9namespace My { namespace DjinniLibrary {
10
11class Native;
12
13class Example {
14public:
15 virtual ~Example() {}
16
17 static std::string hello_from_cpp();
18
19 static std::string hello_from_native(const std::shared_ptr<Native> & from);
20};
21
22} } // namespace My::DjinniLibrary
Definition: example.hpp:13
static std::string hello_from_native(const std::shared_ptr< Native > &from)
static std::string hello_from_cpp()
virtual ~Example()
Definition: example.hpp:15
Definition: example.hpp:9