]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/core/JubConfig.h
Add basic config file support
[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 <OFXMLElementBuilderDelegate>
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