Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #ifndef ESTRUCTURAS_H_INCLUDED
  2. #define ESTRUCTURAS_H_INCLUDED
  3. using namespace std;
  4.  
  5. typedef enum _retorno
  6. {
  7. OK, ERROR, NO_IMPLEMENTADO
  8. }tipoRet;
  9.  
  10. typedef enum _comandos
  11. {
  12. DIR, CREATE, IF, TYPE, DELETE, BF, CAT, IC, BC, UNDELETE, SALIDA, AYUDA, LIMPIAR
  13. }comandos;
  14.  
  15.  
  16. #endif // ESTRUCTURAS_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement