|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2016 - ROLI Ltd.
-
- Permission is granted to use this software under the terms of the ISC license
- http://www.isc.org/downloads/software-support-policy/isc-license/
-
- Permission to use, copy, modify, and/or distribute this software for any
- purpose with or without fee is hereby granted, provided that the above
- copyright notice and this permission notice appear in all copies.
-
- THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
- TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
- FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
- OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
- USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- OF THIS SOFTWARE.
-
- -----------------------------------------------------------------------------
-
- To release a closed-source product which uses other parts of JUCE not
- licensed under the ISC terms, commercial licenses are available: visit
- www.juce.com for more information.
-
- ==============================================================================
- */
-
- #ifndef JUCE_DELETEDATSHUTDOWN_H_INCLUDED
- #define JUCE_DELETEDATSHUTDOWN_H_INCLUDED
-
-
- //==============================================================================
- /**
- Classes derived from this will be automatically deleted when the application exits.
-
- After JUCEApplicationBase::shutdown() has been called, any objects derived from
- DeletedAtShutdown which are still in existence will be deleted in the reverse
- order to that in which they were created.
-
- So if you've got a singleton and don't want to have to explicitly delete it, just
- inherit from this and it'll be taken care of.
- */
- class JUCE_API DeletedAtShutdown
- {
- protected:
- /** Creates a DeletedAtShutdown object. */
- DeletedAtShutdown();
-
- /** Destructor.
-
- It's ok to delete these objects explicitly - it's only the ones left
- dangling at the end that will be deleted automatically.
- */
- virtual ~DeletedAtShutdown();
-
-
- public:
- /** Deletes all extant objects.
-
- This shouldn't be used by applications, as it's called automatically
- in the shutdown code of the JUCEApplicationBase class.
- */
- static void deleteAll();
-
- private:
- static Array <DeletedAtShutdown*>& getObjects();
-
- JUCE_DECLARE_NON_COPYABLE (DeletedAtShutdown)
- };
-
- #endif // JUCE_DELETEDATSHUTDOWN_H_INCLUDED
|