Statistics
| Branch: | Tag: | Revision:

root / pithos-macos / PithosNode.m @ d8d08dc1

History | View | Annotate | Download (363 Bytes)

1
//
2
//  PithosNode.m
3
//  pithos-macos
4
//
5
//  Created by Miltiadis Vasilakis on 01/08/11.
6
//  Copyright 2011 koomasi. All rights reserved.
7
//
8

    
9
#import "PithosNode.h"
10

    
11

    
12
@implementation PithosNode
13

    
14
- (id)init
15
{
16
    self = [super init];
17
    if (self) {
18
        // Initialization code here.
19
    }
20
    
21
    return self;
22
}
23

    
24
- (void)dealloc
25
{
26
    [super dealloc];
27
}
28

    
29
@end