/* * Copyright (c) 2011 Vlad Voicu * Licensed under the Simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include namespace Swift { class ViewHistoryWindow { public: virtual ~ViewHistoryWindow() {}; virtual void setEnabled(bool enabled) = 0; virtual void show() = 0; }; }