mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-25 18:52:13 +00:00
25 lines
607 B
C++
25 lines
607 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
// (c) Copyright Andreas Huber Doenni 2002-2005
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompany-
|
|
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Precompiled.hpp"
|
|
#include "Configuring.hpp"
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
Configuring::Configuring()
|
|
{
|
|
std::cout << "Entering Configuring\n";
|
|
}
|
|
|
|
Configuring::~Configuring()
|
|
{
|
|
std::cout << "Exiting Configuring\n";
|
|
}
|