mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 08:29:27 +02:00
21 lines
382 B
C++
21 lines
382 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Registrar.h
|
|
|
|
James Crook
|
|
|
|
Manages centralised registration of resources.
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_REGISTRAR__
|
|
#define __AUDACITY_REGISTRAR__
|
|
|
|
class Registrar {
|
|
public:
|
|
|
|
};
|
|
#endif
|