blob: 8d76a603929ed9131460a976d67e8caf60db101d [file] [log] [blame]
Alexandre Lision4de68ce2015-04-24 18:22:49 -04001//
2// CertificateWC.m
3// Ring
4//
5// Created by Alexandre Lision on 2015-04-28.
6//
7//
8
9#import "CertificateWC.h"
10
11@implementation CertificateWC
12
13- (void)windowDidLoad {
14 [super windowDidLoad];
15}
16
17- (void) setCertificate:(Certificate*) cert
18{
19 NSLog(@"CertificateWC loaded");
20}
21
22- (IBAction)closePanel:(id)sender
23{
24 [NSApp endSheet:self.window];
25 [self.window orderOut:self];
26}
27
28
29@end