forward declare property

This commit is contained in:
Ari Lazier 2016-03-04 07:28:10 -08:00
parent f7927f189c
commit 6b523bab09
4 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,6 @@
//////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////
#include "object_schema.hpp" #include "object_schema.hpp"
#include "object_store.hpp" #include "object_store.hpp"
#include "property.hpp" #include "property.hpp"

View File

@ -19,8 +19,6 @@
#ifndef REALM_OBJECT_SCHEMA_HPP #ifndef REALM_OBJECT_SCHEMA_HPP
#define REALM_OBJECT_SCHEMA_HPP #define REALM_OBJECT_SCHEMA_HPP
#include "property.hpp"
#include <realm/string_data.hpp> #include <realm/string_data.hpp>
#include <string> #include <string>
@ -28,6 +26,7 @@
namespace realm { namespace realm {
class Group; class Group;
class Property;
class ObjectSchema { class ObjectSchema {
public: public:

View File

@ -20,6 +20,7 @@
#define REALM_OBJECT_STORE_HPP #define REALM_OBJECT_STORE_HPP
#include "schema.hpp" #include "schema.hpp"
#include "property.hpp"
#include <functional> #include <functional>

View File

@ -20,6 +20,7 @@
#define REALM_SCHEMA_HPP #define REALM_SCHEMA_HPP
#include "object_schema.hpp" #include "object_schema.hpp"
#include "property.hpp"
#include <string> #include <string>
#include <vector> #include <vector>