33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#import <ObjFW/OFNotImplementedException.h>
#import "XMPPJSONFileStorage.h"
@implementation XMPPJSONFileStorage
- init
{
Class c = isa;
[self release];
@throw [OFNotImplementedException exceptionWithClass: c
selector: _cmd];
}
- initWithFile: (OFString*)file_
{
|
|
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#import <ObjFW/OFNotImplementedException.h>
#import "XMPPJSONFileStorage.h"
@implementation XMPPJSONFileStorage
- init
{
Class c = [self class];
[self release];
@throw [OFNotImplementedException exceptionWithClass: c
selector: _cmd];
}
- initWithFile: (OFString*)file_
{
|