1// Copyright (c) 1997 James Clark
2// See the file COPYING for copying permission.
3#pragma ident	"%Z%%M%	%I%	%E% SMI"
4
5#ifdef __GNUG__
6#pragma implementation
7#endif
8
9#include "splib.h"
10#include "NotationStorage.h"
11
12#ifdef SP_NAMESPACE
13namespace SP_NAMESPACE {
14#endif
15
16NotationStorageManager::NotationStorageManager(const char *type)
17: type_(type)
18{
19}
20
21Boolean NotationStorageManager::inheritable() const
22{
23  return 0;
24}
25
26const char *NotationStorageManager::type() const
27{
28  return type_;
29}
30
31StorageObject *NotationStorageManager::makeStorageObject(const StringC &,
32							 const StringC &,
33							 Boolean,
34							 Boolean,
35							 Messenger &,
36							 StringC &)
37{
38  return 0;
39}
40
41#ifdef SP_NAMESPACE
42}
43#endif
44