mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
25 lines
527 B
C++
25 lines
527 B
C++
#ifndef _AtlantisStat_AtlantisStat_h
|
|
#define _AtlantisStat_AtlantisStat_h
|
|
//#include <iostream>
|
|
//#include "SQLiteWrapper.h"
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <AtlantisStat/AtlantisStat.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class AtlantisStat : public WithAtlantisStatLayout<TopWindow> {
|
|
public:
|
|
FileSelector fs;
|
|
String filename;
|
|
void Quit();
|
|
void Open();
|
|
void FileMenu(Bar& bar);
|
|
void MainMenu(Bar& bar);
|
|
void DoQuery();
|
|
typedef AtlantisStat CLASSNAME;
|
|
AtlantisStat();
|
|
};
|
|
|
|
#endif
|