mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-06 04:00:08 +00:00
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file was auto-generated!
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
INCLUDE_JUCE
|
|
|
|
//==============================================================================
|
|
/*
|
|
This component lives inside our window, and this is where you should put all
|
|
your controls and content.
|
|
*/
|
|
class CONTENTCOMPCLASS : public AnimatedAppComponent
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
CONTENTCOMPCLASS();
|
|
~CONTENTCOMPCLASS();
|
|
|
|
//==============================================================================
|
|
void update() override;
|
|
|
|
//==============================================================================
|
|
void paint (Graphics& g) override;
|
|
void resized() override;
|
|
|
|
private:
|
|
//==============================================================================
|
|
// Your private member variables go here...
|
|
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (CONTENTCOMPCLASS)
|
|
};
|