typedefs.h
来自「Bank Account 1.0」· C头文件 代码 · 共 26 行
H
26 行
///////////////////////////////////////////////////////////////
// typeDefs.h
///////////////////////////////////////////////////////////////
#pragma once
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
class CheckingAccount;
class SavingAccount;
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
#include <string>
///////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////
typedef unsigned int uint_t;
typedef unsigned int accNum_t;
typedef long double currency_t;
typedef char accountType_t;
typedef std::string field_t;
typedef std::string pin_t;
typedef CheckingAccount checkingRecord_t;
typedef SavingAccount savingRecord_t;
///////////////////////////////////////////////////////////////
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?