2011-05-23 04:43:56 +02:00
|
|
|
/*
|
2011-05-23 05:46:40 +02:00
|
|
|
DummyPlayConnection.hpp - simplified test setup for playback
|
2011-05-23 04:43:56 +02:00
|
|
|
|
|
|
|
|
Copyright (C) Lumiera.org
|
2011-05-23 05:46:40 +02:00
|
|
|
2011, Hermann Vosseler <Ichthyostega@web.de>
|
2011-05-23 04:43:56 +02:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
|
|
|
|
|
2016-11-03 18:22:31 +01:00
|
|
|
/** @file dummy-play-connection.cpp
|
2016-11-09 23:40:46 +01:00
|
|
|
** Implementation of a service for mock render playback to support testing.
|
2016-11-03 18:20:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2018-11-15 23:42:43 +01:00
|
|
|
#include "steam/play/dummy-play-connection.hpp"
|
|
|
|
|
//#include "steam/play/dummy-image-generator.hpp"
|
|
|
|
|
//#include "steam/play/tick-service.hpp"
|
2013-10-20 03:19:36 +02:00
|
|
|
//#include "lib/depend.hpp"
|
2011-05-23 04:43:56 +02:00
|
|
|
|
2011-05-23 05:46:40 +02:00
|
|
|
//#include <string>
|
|
|
|
|
//#include <memory>
|
2014-04-03 22:42:48 +02:00
|
|
|
//#include <functional>
|
2011-05-23 04:43:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-06-02 02:31:34 +02:00
|
|
|
namespace steam{
|
2011-12-02 16:10:03 +01:00
|
|
|
namespace play {
|
2023-06-02 02:31:34 +02:00
|
|
|
namespace test {
|
2011-05-23 04:43:56 +02:00
|
|
|
|
2011-12-02 16:10:03 +01:00
|
|
|
|
|
|
|
|
namespace { // hidden local details of the service implementation....
|
2011-05-23 05:46:40 +02:00
|
|
|
|
2023-06-02 02:31:34 +02:00
|
|
|
|
2011-12-02 16:10:03 +01:00
|
|
|
} // (End) hidden service impl details
|
|
|
|
|
|
2023-06-02 02:31:34 +02:00
|
|
|
UnimplementedConnection::~UnimplementedConnection() { } ///< emit VTable here...
|
2011-12-02 16:10:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-06-02 02:31:34 +02:00
|
|
|
/** */
|
2011-12-02 16:10:03 +01:00
|
|
|
|
2011-05-23 04:43:56 +02:00
|
|
|
|
2023-06-02 02:31:34 +02:00
|
|
|
}}} // namespace steam::play
|