ReaWwise

REAPER extension
Log | Files | Refs | Submodules

StandaloneWindow.h (1062B)


      1 /*----------------------------------------------------------------------------------------
      2 
      3 Copyright (c) 2023 AUDIOKINETIC Inc.
      4 
      5 This file is licensed to use under the license available at:
      6 https://github.com/audiokinetic/ReaWwise/blob/main/License.txt (the "License").
      7 You may not use this file except in compliance with the License.
      8 
      9 Unless required by applicable law or agreed to in writing, software distributed
     10 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
     11 CONDITIONS OF ANY KIND, either express or implied.  See the License for the
     12 specific language governing permissions and limitations under the License.
     13 
     14 ----------------------------------------------------------------------------------------*/
     15 
     16 #pragma once
     17 
     18 #include "StubContext.h"
     19 #include "UI/MainWindow.h"
     20 
     21 namespace AK::WwiseTransfer
     22 {
     23 	class StandaloneWindow : public MainWindow
     24 	{
     25 	public:
     26 		StandaloneWindow();
     27 		~StandaloneWindow() override;
     28 
     29 		void userTriedToCloseWindow() override;
     30 
     31 	private:
     32 		StubContext stubContext;
     33 	};
     34 } // namespace AK::WwiseTransfer