2009-11-07 02:49:55 +01:00
|
|
|
/*
|
2009-11-09 07:35:08 +01:00
|
|
|
PLACEMENT-INDEX-QUERY-RESOLVER.hpp - using PlacementIndex to resolve scope queries
|
2009-11-07 02:49:55 +01:00
|
|
|
|
|
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2009, 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.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2009-11-09 07:35:08 +01:00
|
|
|
/** @file placement-index-query-resolver.hpp
|
|
|
|
|
** TODO WIP-WIP
|
2009-11-07 02:49:55 +01:00
|
|
|
**
|
|
|
|
|
** @see PlacementRef
|
|
|
|
|
** @see PlacementIndex_test
|
|
|
|
|
**
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-11-09 07:35:08 +01:00
|
|
|
#ifndef MOBJECT_SESSION_PLACEMENT_INDEX_QUERY_RESOLVER_H
|
|
|
|
|
#define MOBJECT_SESSION_PLACEMENT_INDEX_QUERY_RESOLVER_H
|
2009-11-07 02:49:55 +01:00
|
|
|
|
|
|
|
|
//#include "pre.hpp"
|
|
|
|
|
//#include "proc/mobject/session/locatingpin.hpp"
|
|
|
|
|
//#include "proc/asset/pipe.hpp"
|
2009-11-09 07:35:08 +01:00
|
|
|
//#include "lib/util.hpp"
|
|
|
|
|
//#include "lib/factory.hpp"
|
|
|
|
|
//#include "proc/mobject/placement.hpp"
|
|
|
|
|
#include "proc/mobject/session/placement-index.hpp"
|
2009-11-07 02:49:55 +01:00
|
|
|
#include "proc/mobject/session/query-resolver.hpp"
|
|
|
|
|
|
2009-11-09 07:35:08 +01:00
|
|
|
//#include <tr1/memory>
|
|
|
|
|
//#include <boost/noncopyable.hpp>
|
|
|
|
|
//#include <boost/scoped_ptr.hpp>
|
|
|
|
|
//#include <vector>
|
2009-11-07 02:49:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace mobject {
|
|
|
|
|
|
2009-11-09 07:35:08 +01:00
|
|
|
// class MObject; /////////////////////////////////////????
|
2009-11-07 02:49:55 +01:00
|
|
|
|
|
|
|
|
namespace session {
|
|
|
|
|
|
2009-11-09 07:35:08 +01:00
|
|
|
// using lib::factory::RefcountFac;
|
|
|
|
|
// using std::tr1::shared_ptr;
|
|
|
|
|
// using boost::scoped_ptr;
|
|
|
|
|
// using std::vector;
|
2009-11-07 02:49:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2009-11-09 07:35:08 +01:00
|
|
|
* TODO type comment
|
2009-11-07 02:49:55 +01:00
|
|
|
*/
|
2009-11-09 07:35:08 +01:00
|
|
|
class PlacementIndexQueryResolver
|
|
|
|
|
: public session::QueryResolver
|
2009-11-07 02:49:55 +01:00
|
|
|
{
|
|
|
|
|
|
2009-11-09 07:35:08 +01:00
|
|
|
};
|
2009-11-07 02:49:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
}} // namespace mobject::session
|
|
|
|
|
#endif
|