mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-22 05:42:26 +00:00
26 lines
641 B
C++
26 lines
641 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (c) Andreas Huber Doenni 2002-2004.
|
|
// Use, modification and distribution are subject to the Boost Software
|
|
// License, Version 1.0. (See accompanying 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";
|
|
}
|