arquivofonte.h

来自「"tiny" language interpreter written in j」· C头文件 代码 · 共 31 行

H
31
字号
/*
TP2 LP INTERPRETADOR TINY
ALUNO : ANDRE LUIS DURAO ABDO
MATRICULA : 283999
DATA DA ENTREGA : 10/05/2007
*/ 

//ArquivoFonte.h
#ifndef ARQUIVOFONTE_H
#define ARQUIVOFONTE_H

#include <string>
#include <fstream>
#include <iostream>
#include "StringTokenizer.h"
using namespace std;

class ArquivoFonte{
      public: ArquivoFonte( const string& str);
              ~ArquivoFonte( ){};
              string proximaPalavra();
              void saltaPalavra();
              void listaArquivo();
              void listaPalavras();
      private:
              StringTokenizer *st;
              string linha;
          //    ifstream *is;      
};
#endif

⌨️ 快捷键说明

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