forward declare property
This commit is contained in:
parent
f7927f189c
commit
6b523bab09
|
@ -17,7 +17,6 @@
|
|||
////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "object_schema.hpp"
|
||||
|
||||
#include "object_store.hpp"
|
||||
#include "property.hpp"
|
||||
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
#ifndef REALM_OBJECT_SCHEMA_HPP
|
||||
#define REALM_OBJECT_SCHEMA_HPP
|
||||
|
||||
#include "property.hpp"
|
||||
|
||||
#include <realm/string_data.hpp>
|
||||
|
||||
#include <string>
|
||||
|
@ -28,6 +26,7 @@
|
|||
|
||||
namespace realm {
|
||||
class Group;
|
||||
class Property;
|
||||
|
||||
class ObjectSchema {
|
||||
public:
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#define REALM_OBJECT_STORE_HPP
|
||||
|
||||
#include "schema.hpp"
|
||||
#include "property.hpp"
|
||||
|
||||
#include <functional>
|
||||
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#define REALM_SCHEMA_HPP
|
||||
|
||||
#include "object_schema.hpp"
|
||||
#include "property.hpp"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
|
Loading…
Reference in New Issue