1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef REALM_HISTORY_HPP
- #define REALM_HISTORY_HPP
- #include <memory>
- #include <string>
- #include <realm/replication.hpp>
- namespace realm {
- std::unique_ptr<Replication> make_in_realm_history(const std::string& realm_path);
- }
- #endif
|