3
Follows the code
class Nome
{
    public:
        Nome(string nome, string sobreNome);
        void exibirNome();
        virtual ~Nome();
    protected:
    private:
         string nome;
         string sobreNome;
         
};
Error
error: expected ')' before 'name'
error: 'string' does not name a type
error: 'string' does not name a type
There’s nothing else in your code?
– Maniero