actual/packages/node-libofx/OpenSP-1.5.2/lib/NotationStorage.cxx

43 lines
674 B
C++
Raw Permalink Normal View History

2022-04-29 02:44:38 +00:00
// Copyright (c) 1997 James Clark
// See the file COPYING for copying permission.
#ifdef __GNUG__
#pragma implementation
#endif
#include "splib.h"
#include "NotationStorage.h"
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif
NotationStorageManager::NotationStorageManager(const char *type)
: type_(type)
{
}
Boolean NotationStorageManager::inheritable() const
{
return 0;
}
const char *NotationStorageManager::type() const
{
return type_;
}
StorageObject *NotationStorageManager::makeStorageObject(const StringC &,
const StringC &,
Boolean,
Boolean,
Messenger &,
StringC &)
{
return 0;
}
#ifdef SP_NAMESPACE
}
#endif