26 lines
522 B
C++
26 lines
522 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScreenInputOptions
|
|
|
|
Desc: Select a song.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "ScreenOptions.h"
|
|
|
|
class ScreenInputOptions : public ScreenOptions
|
|
{
|
|
public:
|
|
ScreenInputOptions();
|
|
|
|
private:
|
|
void ImportOptions();
|
|
void ExportOptions();
|
|
|
|
void GoToNextState();
|
|
void GoToPrevState();
|
|
};
|