mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-21 17:32:16 +00:00
27 lines
723 B
C++
27 lines
723 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
// (c) 2002 Andreas Huber, Zurich, Switzerland
|
|
// Permission to copy, use, modify, sell and distribute this software
|
|
// is granted provided this copyright notice appears in all copies.
|
|
// This software is provided "as is" without express or implied
|
|
// warranty, and with no claim as to its suitability for any purpose.
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Precompiled.hpp"
|
|
#include "Configuring.hpp"
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
Configuring::Configuring()
|
|
{
|
|
std::cout << "Entering Configuring\n";
|
|
}
|
|
|
|
Configuring::~Configuring()
|
|
{
|
|
std::cout << "Exiting Configuring\n";
|
|
}
|