Personal Finance 1.0.0
An application that allows you to track/store/view finances, as well as calculate different financial values.
App.h
Go to the documentation of this file.
1/*
2 * Author: Dawson Dauphinais
3 * ddauphin@nmu.edu
4 *
5 * Date Last Modified: 11/23/2021
6 *
7 * This file contains the definitions of the functions belonging to the myApp class.
8 * These functions will be used to construct a GUI for the main application.
9 * */
10
11#ifndef PERSONALFINANCE_APP_H
12#define PERSONALFINANCE_APP_H
13
14#include <wx/wxprec.h>
15
16#ifndef WX_PRECOMP
17
18#include <wx/wx.h>
19
20#endif
21
22
23using namespace std;
24
25class App : public wxApp
26{
27private:
28 wxString pathName;
29
30public:
31 void setPathName(wxString path);
32 virtual bool OnInit();
33 int onExit();
34};
35
36#endif //PERSONALFINANCE_APP_H
Definition: App.h:26
void setPathName(wxString path)
virtual bool OnInit()
int onExit()