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
23
using namespace
std;
24
25
class
App
:
public
wxApp
26
{
27
private
:
28
wxString pathName;
29
30
public
:
31
void
setPathName
(wxString path);
32
virtual
bool
OnInit
();
33
int
onExit
();
34
};
35
36
#endif
//PERSONALFINANCE_APP_H
App
Definition:
App.h:26
App::setPathName
void setPathName(wxString path)
App::OnInit
virtual bool OnInit()
App::onExit
int onExit()
CS480
PersonalFinance_GUI
include
app
App.h
Generated by
1.9.2