#pragma once class CRecipe { public: CRecipe(); CRecipe(int id, const char* pszName); ~CRecipe(); public: int getId(); std::string& getName(); private: int m_nId; std::string m_strName; };