12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
|
|
#include "GuiApplication.h"
|
|
|
|
class NotesTk : public GuiApplication
|
|
{
|
|
public:
|
|
NotesTk(std::unique_ptr<CommandLineArgs> args);
|
|
|
|
protected:
|
|
void initializeViews() override;
|
|
};
|