]> rtime.felk.cvut.cz Git - boost-statechart-viewer.git/blob - examples/Camera/Configuring.cpp
Add more error messages and TODOs (for Camera example)
[boost-statechart-viewer.git] / examples / Camera / Configuring.cpp
1 //////////////////////////////////////////////////////////////////////////////
2 // Copyright 2002-2006 Andreas Huber Doenni
3 // Distributed under the Boost Software License, Version 1.0. (See accompany-
4 // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 //////////////////////////////////////////////////////////////////////////////
6
7
8
9 #include "Precompiled.hpp"
10 #include "Configuring.hpp"
11 #include <iostream>
12 #include <stdexcept>
13
14
15
16 Configuring::Configuring()
17 {
18   std::cout << "Entering Configuring\n";
19 }
20
21 Configuring::~Configuring()
22 {
23   std::cout << "Exiting Configuring\n";
24 }