account: split class logic out and have it building

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2025-02-08 11:09:09 -05:00
parent 82b198f898
commit bfa3196b62
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
4 changed files with 36 additions and 8 deletions

29
main.cpp Normal file
View file

@ -0,0 +1,29 @@
/*
* =====================================================================================
*
* Filename: main.cpp
*
* Description:
*
* Version: 1.0
* Created: 02/08/2025 11:05:02 AM
* Revision: none
* Compiler: gcc
*
* Author: YOUR NAME (),
* Organization:
*
* =====================================================================================
*/
#include <iostream>
#include <cmath>
#include <cstdlib>
#include "account.h"
using namespace std;
int main(int argc, char* argv[]) {
Account account(0.0);
return EXIT_SUCCESS;
}