Lumiera  0.pre.03
»edit your freedom«
play-service.hpp
Go to the documentation of this file.
1 /*
2  PLAY-SERVICE.hpp - interface: render- and playback control
3 
4  Copyright (C) Lumiera.org
5  2011, Hermann Vosseler <Ichthyostega@web.de>
6 
7  This program is free software; you can redistribute it and/or
8  modify it under the terms of the GNU General Public License as
9  published by the Free Software Foundation; either version 2 of
10  the License, or (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21 */
22 
56 #ifndef STEAM_PLAY_PLAY_SERVICE_H
57 #define STEAM_PLAY_PLAY_SERVICE_H
58 
59 
60 #include "lib/error.hpp"
61 #include "lib/nocopy.hpp"
62 #include "include/play-facade.hpp"
63 
64 #include <memory>
65 //#include <string>
66 
67 
68 namespace lumiera {
69 namespace error {
70  LUMIERA_ERROR_DECLARE (CANT_PLAY);
71 }}
72 
73 namespace steam {
74 namespace play {
75 
76  using std::string;
77 //using lumiera::Subsys;
78 //using lumiera::Display;
79 //using lumiera::DummyPlayer;
80 
81 
82 // class DummyImageGenerator;
83 // class TickService;
84  class ProcessTable;
85  class RenderConfigurator;
86 
87 
88 
89 
90  /**************************************************/
106  : public lumiera::Play
108  {
109  std::unique_ptr<ProcessTable> pTable_;
110 
111 
113  virtual Controller connect(ModelPorts, POutputManager);
114 
115 
116  public:
117  PlayService();
118 
119  ~PlayService();
120 
121  };
122 
123 
124 }} // namespace steam::play
125 #endif
Any copy and copy construction prohibited.
Definition: nocopy.hpp:46
Implementation access point: Player subsystem.
#define LUMIERA_ERROR_DECLARE(err)
Forward declare an error constant.
Definition: error.h:71
Steam-Layer implementation namespace root.
Public access point to the playback service provided by the »play-out subsystem«
Interface to the Player subsystem of Lumiera (Steam-Layer).
Definition: play-facade.hpp:82
Mix-Ins to allow or prohibit various degrees of copying and cloning.
Continuous playback process, which has been hooked up and started with a fixed set of output slots...
Lumiera error handling (C++ interface).
Lumiera public interface.
Definition: advice.cpp:113