Skip to content

Instantly share code, notes, and snippets.

@thiagomg
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagomg/1f36c4a7f4f4dc533ed6 to your computer and use it in GitHub Desktop.
Save thiagomg/1f36c4a7f4f4dc533ed6 to your computer and use it in GitHub Desktop.
range for
class CashFlow {
//retorna um intervalo do ano/mês em questão
getMonthlyFlow(int year, int month)
//retorna um intervalo do ano/mês em questão
getYearFlow(int year)
//retorna um intervalo de um cliente específico
getClientFlow(const Client &client)
//retorna um intervalo de um cliente específico, para um período específico
getClientFlow(const Client &client, int year, int month)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment