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