X-Git-Url: http://cgit.babelmonkeys.de/?a=blobdiff_plain;f=src%2Fcore%2FJubConfig.h;h=c88182906d090a9d3d54235c0c399cb649ee7a00;hb=HEAD;hp=00173fa56a03f92da5d4b7c63eae54f3d115ddca;hpb=68a17f7fc1f5fe8c2fee68ff35e672af4fd1e2f2;p=jubjub.git diff --git a/src/core/JubConfig.h b/src/core/JubConfig.h index 00173fa..c881829 100644 --- a/src/core/JubConfig.h +++ b/src/core/JubConfig.h @@ -2,15 +2,17 @@ #define CONFIG_NS @"http://babelmonkeys.de/jubjub/config" -@interface JubConfig : OFObject +@interface JubConfig : OFObject { - OFString *domain, *server; - OFString *username; - OFString *password; + OFString *_domain, *_server; + OFString *_username; + OFString *_password; + OFString *_frontend; } @property (readonly) OFString *domain, *server; @property (readonly) OFString *username; @property (readonly) OFString *password; +@property (readonly) OFString *frontend; - initWithFile: (OFString*)file; @end