Skip to content

Instantly share code, notes, and snippets.

@Leinnan
Created April 21, 2017 17:52
Show Gist options
  • Save Leinnan/05bcca420371546bf6cee01f7ae3cc34 to your computer and use it in GitHub Desktop.
Save Leinnan/05bcca420371546bf6cee01f7ae3cc34 to your computer and use it in GitHub Desktop.
Opis programu do zarządzania finansami
# Klasa Category
## Pola
- string name;
- string color;// in hex colors
# KLASA Transaction
enum class TransactionType { INCOME, EXPENSE };
## Pola
- QDateTime date(data);
- TransactionType type;
- int amount; //suma podana w groszach
- string title;
- Category category;
## Metody
konstruktor: Transaction(m_date,m_type,amount,m_title)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment