목차
BGBoard 프로젝트 설명서 목차입니다.
1. 프로젝트 개발환경 및 프로그램 실행 권장사양 3
2. 프로젝트 시스템 API 4
2.1. BGBoard(), ~BGBoard() 4
2.2. void startToBG() 4
2.3. void setBoard(int **) 5
2.4. void copyBoard(int **, int **) 5
2.5. void printBoard(int **, int **, int **, bool) 5
2.6. int getInputNumber() 5
2.7. int findBestNumber(int **) 5
2.8. int checkAndGetBGCount(int, int **) 6
2.9. void waitKeyboard() 6
3. 프로젝트 실행 결과 7
1. 프로젝트 개발환경 및 프로그램 실행 권장사양 3
2. 프로젝트 시스템 API 4
2.1. BGBoard(), ~BGBoard() 4
2.2. void startToBG() 4
2.3. void setBoard(int **) 5
2.4. void copyBoard(int **, int **) 5
2.5. void printBoard(int **, int **, int **, bool) 5
2.6. int getInputNumber() 5
2.7. int findBestNumber(int **) 5
2.8. int checkAndGetBGCount(int, int **) 6
2.9. void waitKeyboard() 6
3. 프로젝트 실행 결과 7
본문내용
BGBoard클래스에서 사용된 API입니다.
class BGBoard {
private:
void setBoard(int **);
void copyBoard(int **, int **);
void printBoard(int **, int **, int **, bool);
int getInputNumber();
int findBestNumber(int **);
int checkAndGetBGCount(int, int **);
void waitKeyboard();
int **m_pBoard1, **m_pBoard2, **m_pBoard3;
public:
BGBoard();
~BGBoard();
void startToBG();
};
class BGBoard {
private:
void setBoard(int **);
void copyBoard(int **, int **);
void printBoard(int **, int **, int **, bool);
int getInputNumber();
int findBestNumber(int **);
int checkAndGetBGCount(int, int **);
void waitKeyboard();
int **m_pBoard1, **m_pBoard2, **m_pBoard3;
public:
BGBoard();
~BGBoard();
void startToBG();
};
소개글