戻り値の型が構造体であるときに問題が発生する
Example.h
class Example {
private:
typedef struct connection_header {
string url;
string method;
};
static connection_header get_connection_header();
};
Example.cpp
connection_header Example::get_connection_header() {
return NULL;
}
私は得ています'connection_header' does not name a type
このエラーの理由がわかりますか