我正在尝试将 Album 对象从 main 发送到另一个 .cpp 文件中的函数,但编译时出现错误:
从 main 我创建一个 Album 对象,然后尝试将其传递给菜单函数,如下所示:
Model::Album album("TestAlbum");
View::Menu m;
m.startMenu(album);
我的菜单类:
#include "stdio.h"
#include "Menu.hpp"
#include "AlbumOps.hpp"
#include "Album.hpp"
#include <iostream>
using namespace std;
namespace View
{
void Menu::startMenu(Model::Album inAlbum) //compile errors happen here
{
int option = 1;
while (option!=5)
{
cout << "1. Add image to album\n";
cout << "2. Remove image from album\n";
cout << "3. List all images in album\n";
cout << "4. View image in album\n";
cout << "5. Quit\n";
//and so on
当我尝试编译它时,我在 void Menu::startMenu(Model::Album inAlbum) 行上收到错误
“模型”尚未声明
模型是我使用的命名空间。我认为包括 Album.hpp 可以解决这个问题,但它没有,我不知道如何解决这个问题。
编辑:菜单是一个类,这是我的 Menu.hpp:
#ifndef MENU_H //"Header guard"
#define MENU_H
namespace View
{
class Menu
{
public:
void startMenu(Model::Album inAlbum);
};
}
#endif
还有我的 Album.hpp:
#ifndef ALBUM_H
#define ALBUM_H
#include <string>
#include <vector>
#include "Image.hpp"
namespace Model{
class Album
{
private:
std::vector<Image*> imageList;
std::string albumName;
public:
Album(std::string);
/****Setters****/
void setAlbumName(std::string);
void addImage(Image);
/****Getters****/
Image getImage(int);
std::string getAlbumName();
int getListLength();
};
}
#endif