Friend DebugWindow to GlobalStorage for future use.

This commit is contained in:
Teo Mrnjavac 2015-03-04 20:23:33 +01:00
parent 9249d6e165
commit d8ca5eee5b

View File

@ -40,6 +40,8 @@ class list;
namespace Calamares namespace Calamares
{ {
class DebugWindow;
class GlobalStorage class GlobalStorage
{ {
public: public:
@ -61,8 +63,11 @@ public:
int python_remove( const std::string& key ); int python_remove( const std::string& key );
boost::python::api::object python_value( const std::string& key ) const; boost::python::api::object python_value( const std::string& key ) const;
#endif #endif
private: private:
QVariantMap m; QVariantMap m;
friend DebugWindow;
}; };
} // namespace Calamares } // namespace Calamares