CPP05 1.0
読み取り中…
検索中…
一致する文字列を見つけられません
Form.hpp ファイル

Defines the Form class and its exceptions. [詳解]

#include "Bureaucrat.hpp"
#include <iostream>
#include <stdexcept>
#include <string>
Form.hpp の依存先関係図:
被依存関係図:

[ソースコード]

クラス

class  Form
 Represents a form that needs to be signed and executed. [詳解]
 
class  Form::GradeTooHighException
 
class  Form::GradeTooLowException
 

関数

std::ostreamoperator<< (std::ostream &os, const Form &form)
 Overloads the << operator to print Form information.
 

詳解

Defines the Form class and its exceptions.

Form.hpp に定義があります。

関数詳解

◆ operator<<()

std::ostream & operator<< ( std::ostream os,
const Form form 
)

Overloads the << operator to print Form information.

引数
osThe output stream.
formThe Form object to print.
戻り値
A reference to the output stream.

Form.cpp106 行目に定義があります。