mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 14:20:06 +02:00
FileDialog goes into audacity/src/widgets and the mod-* directories go into audacity/modules. This leaves nothing in lib-src that isn't a 3rd-party libs or supporting files.
24 lines
380 B
C++
24 lines
380 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
SkewedRuler.h
|
|
|
|
James Crook
|
|
|
|
Draws a ruler used for aligning two time sequences.
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_SKEWED_RULER__
|
|
#define __AUDACITY_SKEWED_RULER__
|
|
|
|
|
|
|
|
class SkewedRuler {
|
|
public:
|
|
|
|
};
|
|
|
|
#endif
|