I have the following files
In each of the files there is a class definiton (JSON, JSONObject : public JSON, JSONArray : public JSON), and the latter two both have functions that have the other as a parameter (and not as a reference type, so simple forward declaration does not solve the problem). These files are:
json.hpp:
#ifndef _JSON
#define _JSON
#include <string>
#include <iostream>
#include "../../lib/simplejson/json.hpp"
class JSON{
protected:
std::string content;
public:
JSON(std::string content) : content(content)
{}
operator std::string()
{return content;}
friend std::ostream& operator<<(std::ostream&, JSON&);
};
inline std::ostream& operator<<(std::ostream& os, JSON& content)
{
os<<content.content;
return os;
}
#endif
jsonobject.hpp:
#ifndef _JSONOBJECT
#define _JSONOBJECT
#include "json.hpp"
class JSONArray;
class JSONObject : public JSON {
public:
JSONObject(std::string= "{}");
JSONObject get(std::string);
template<typename T> void put(std::string, T);
operator int();
JSONObject operator[](int);
};
inline JSONObject::operator int() {return atoi(content.c_str());}
inline JSONObject::JSONObject(std::string content) : JSON(content) {}
inline JSONObject JSONObject::get(std::string key) {
json::JSON obj = json::JSON::Load(content);
JSONObject json(obj[key].dump());
return json; }
template<typename T> inline void JSONObject::put(std::string key, T value) {
json::JSON obj = json::JSON::Load(content);
obj[key] = value;
content = obj.dump(); } template<> inline void JSONObject::put<JSON&>(std::string key, JSON& value) {
json::JSON obj = json::JSON::Load(content);
json::JSON obj2 = json::JSON::Load((std::string)value);
std::cout<<obj2<<std::endl<<std::endl;
obj[key] = obj2;
content = obj.dump(); } template<> inline void JSONObject::put<JSONObject>(std::string key, JSONObject value) { //here is JSONObject used in a manner which requires it not to only be forward-declared
(*this).put(key, dynamic_cast<JSON&>(value)); } template<> inline void JSONObject::put<JSONArray&>(std::string key, JSONArray& value) {
(*this).put(key, dynamic_cast<JSON&>(value)); }
#endif
jsonarray.hpp:
#ifndef _JSONARRAY
#define _JSONARRAY
#include "jsonobject.hpp"
class JSONArray : public JSON{
public:
JSONArray(std::string = "[]");
JSON operator[](int n);
template<typename T> void add(int, T);
};
inline JSONArray::JSONArray(std:: string content) : JSON(content)
{}
inline JSON JSONArray::operator[](int n)
{
json::JSON obj = json::JSON::Load(content);
JSONObject json(obj[n].dump()); //Here is JSONObject instantiated, which does not work with only forward-declarataion
return json;
}
template<typename T> inline void JSONArray::add(int n, T t)
{
json::JSON obj = json::JSON::Load(content);
obj[n] = t;
content = obj.dump();
}
template<> inline void JSONArray::add<JSON>(int n, JSON t)
{
json::JSON obj = json::JSON::Load(content);
json::JSON obj2 = json::JSON::Load((std::string)t);
obj[n] = obj2;
content = obj.dump();
}
#endif
What am I missing? I have tried placing them all in a single file too, it didn't help either.
No, it won't help you like that. You need to move implementation into a separate class to break the cycle and use implementation's forward reference in one of the classes. The technique is called Cheshire's cat and it goes something like:
A.hpp
// AImple uses B.
class AImpl;
class A
{
AImpl* impl;
public:
void f(); // f uses impl.
};
B.hpp
#include "a.hpp"
class B
{
A a; // B can use A here.
};
A.cpp
#include "a.hpp"
#include "aimpl.hpp"
void A::f()
{
impl -> f();
}
AImpl.cpp
#include "b.hpp"
#include "AImpl.hpp"
// implementation which uses B.