ReaWwise

REAPER extension
Log | Files | Refs | Submodules

Standalone.h (1296B)


      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 
     20 #include <juce_gui_basics/juce_gui_basics.h>
     21 #include <memory>
     22 
     23 namespace AK::WwiseTransfer
     24 {
     25 	class StandaloneWindow;
     26 
     27 	class Standalone : public juce::JUCEApplication
     28 	{
     29 	public:
     30 		const juce::String getApplicationName() override;
     31 		const juce::String getApplicationVersion() override;
     32 		bool moreThanOneInstanceAllowed() override;
     33 		void initialise(const juce::String& commandLine) override;
     34 		void shutdown() override;
     35 
     36 	private:
     37 		std::unique_ptr<StandaloneWindow> mainWindow;
     38 	};
     39 } // namespace AK::WwiseTransfer