⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 comandoendw.h

📁 "tiny" language interpreter written in java
💻 H
字号:
/*
TP2 LP INTERPRETADOR TINY
ALUNO : ANDRE LUIS DURAO ABDO
MATRICULA : 283999
DATA DA ENTREGA : 10/05/2007
*/ 

//ComandoEndW.h
#ifndef COMANDOENDW_H
#define COMANDOENDW_H

#include "Comando.h"
#include "Memoria.h"
#include <string>

using namespace std;

class ComandoEndW: public Comando{
    public: 
        ComandoEndW(Memoria *mem, int linha, int linhaWhile);
        ~ComandoEndW(){};
        int executa();
        string toString();
        void defineLinhaSalto(int nolinha);
    private:
        Memoria *mem;        
        //linha de execucao
        int linha;        
        //ultima linha de execucao
        int linhaWhile;
};
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -