LUMIERA.clone/src/proc/mobject/session/session-service-defaults.hpp
Ichthyostega 7da8844581 first steps towards using the new SessionServices access mechanism
add the necessary hooks and change the SessionImpl accordingly.
Still using the old access method for any real code
2009-11-09 07:35:08 +01:00

59 lines
1.6 KiB
C++

/*
SESSION-SERVICE-DEFAULTS.hpp - session implementation service API: manage default objects
Copyright (C) Lumiera.org
2008, Hermann Vosseler <Ichthyostega@web.de>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/** @file session-service-defaults.hpp
** Implementation level session API: manage default configured objects.
**
** @todo rework the existing DefsManager to fit into this scheme. TICKET #404
**
** @see session-impl.hpp implementation of the service
** @see session-services.cpp implementation of access
**
*/
#ifndef MOBJECT_SESSION_SESSION_SERVICE_DEFAULTS_H
#define MOBJECT_SESSION_SESSION_SERVICE_DEFAULTS_H
//#include "proc/mobject/session.hpp"
//#include "lib/meta/generator.hpp"
namespace mobject {
namespace session {
// using lumiera::typelist::InstantiateChained;
// using lumiera::typelist::InheritFrom;
// using lumiera::typelist::NullType;
class SessionServiceDefaults
{
};
}} // namespace mobject::session
#endif