2017-12-15 16:49:29 +00:00
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// SSSS tt lll lll
|
|
|
|
// SS SS tt ll ll
|
|
|
|
// SS tttttt eeee ll ll aaaa
|
|
|
|
// SSSS tt ee ee ll ll aa
|
|
|
|
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
|
|
|
// SS SS tt ee ll ll aa aa
|
|
|
|
// SSSS ttt eeeee llll llll aaaaa
|
|
|
|
//
|
2017-12-29 20:40:37 +00:00
|
|
|
// Copyright (c) 1995-2018 by Bradford W. Mott, Stephen Anthony
|
2017-12-15 16:49:29 +00:00
|
|
|
// and the Stella Team
|
|
|
|
//
|
|
|
|
// See the file "License.txt" for information on usage and redistribution of
|
|
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
|
|
//============================================================================
|
|
|
|
|
2017-12-21 01:26:22 +00:00
|
|
|
#ifndef TIME_MACHINE_HXX
|
|
|
|
#define TIME_MACHINE_HXX
|
2017-12-15 16:49:29 +00:00
|
|
|
|
|
|
|
class OSystem;
|
|
|
|
|
|
|
|
#include "DialogContainer.hxx"
|
|
|
|
|
|
|
|
/**
|
2017-12-21 01:26:22 +00:00
|
|
|
The base dialog for all time machine related UI items in Stella.
|
2017-12-15 16:49:29 +00:00
|
|
|
|
|
|
|
@author Stephen Anthony
|
|
|
|
*/
|
2017-12-21 01:26:22 +00:00
|
|
|
class TimeMachine : public DialogContainer
|
2017-12-15 16:49:29 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-12-21 01:26:22 +00:00
|
|
|
TimeMachine(OSystem& osystem);
|
|
|
|
virtual ~TimeMachine() = default;
|
2017-12-15 16:49:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Following constructors and assignment operators not supported
|
2017-12-21 01:26:22 +00:00
|
|
|
TimeMachine() = delete;
|
|
|
|
TimeMachine(const TimeMachine&) = delete;
|
|
|
|
TimeMachine(TimeMachine&&) = delete;
|
|
|
|
TimeMachine& operator=(const TimeMachine&) = delete;
|
|
|
|
TimeMachine& operator=(TimeMachine&&) = delete;
|
2017-12-15 16:49:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|