blob: aa417c7139065b76745fdca08e84eda7252a847d [file] [log] [blame]
#pragma once
#include "cxxbridge/cxxbridge.h"
#include <memory>
#include <string>
namespace org {
namespace rust {
class ThingC {
public:
ThingC(std::string appname);
~ThingC();
std::string appname;
};
struct SharedThing;
std::unique_ptr<ThingC> make_demo(::rust::Str appname);
const std::string &get_name(const ThingC &thing);
void do_thing(SharedThing state);
} // namespace rust
} // namespace org