1/*
2 * Copyright 2011, Oliver Tappe <zooey@hirschkaefer.de>
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "Node.h"
8
9
10Node::Node(ino_t id, mode_t mode)
11	:
12	fSourceID(id),
13	fMode(mode)
14{
15}
16
17
18Node::~Node()
19{
20}
21