]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/core/JubConfig.h
8e8e6ae86b2720812ffe2cbb35eacc7b476eaa2b
[jubjub.git] / src / core / JubConfig.h
1 #import <ObjFW/ObjFW.h>
2
3 #define CONFIG_NS @"http://babelmonkeys.de/jubjub/config"
4
5 @interface JubConfig : OFObject
6 {
7         OFString *domain, *server;
8         OFString *username;
9         OFString *password;
10 }
11 @property (readonly) OFString *domain, *server;
12 @property (readonly) OFString *username;
13 @property (readonly) OFString *password;
14
15 - initWithFile: (OFString*)file;
16 @end