]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/core/JubConfig.h
Prefix ivars with an underscore
[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