Djinni Library  2.0.0
Cross-Platform Library
native.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 <string>
7
8namespace My { namespace DjinniLibrary {
9
10class Native {
11public:
12 virtual ~Native() {}
13
14 virtual std::string hello_from_native() = 0;
15};
16
17} } // namespace My::DjinniLibrary
Definition: native.hpp:10
virtual std::string hello_from_native()=0
virtual ~Native()
Definition: native.hpp:12
Definition: example.hpp:9