私は c++ を使用して学校のプロジェクトを行っています。プロジェクトは複数のファイルに分割されます。
test_driver.cpp - a file to test the code written
storage.cpp - implementation file for storage class and methods
storage.h - header file for storage
song.cpp - implementation file for song class, songs are the data type being manipulated by storage
song.h - header file for song
#includes をどこに置くか。ストレージは曲のデータ型に依存します。ほとんどの場合、それらを操作したり、タイトルを変更したり、移動したりするためです。 . また、実装ファイル間で共有されるグローバル定数を宣言したいのですが、これは可能ですか?