1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Introjucer: wizards for auto-generating new Component classes

This commit is contained in:
jules 2012-09-06 11:08:29 +01:00
parent 6e631bceb1
commit d24ee139d3
21 changed files with 582 additions and 77 deletions

View file

@ -27,13 +27,13 @@ public:
//==============================================================================
void initialise (const String& commandLine)
{
// Do your application's initialisation code here..
// Add your application's initialisation code here..
APPINITCODE
}
void shutdown()
{
// Do your application's shutdown code here..
// Add your application's shutdown code here..
APPSHUTDOWNCODE
}
@ -43,7 +43,6 @@ public:
quit();
}
//==============================================================================
const String getApplicationName()
{
return "APPNAME";
@ -70,4 +69,4 @@ private:
//==============================================================================
// This macro generates the main() routine that starts the app.
START_JUCE_APPLICATION(APPCLASSNAME)
START_JUCE_APPLICATION (APPCLASSNAME)