-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterfazDelSistemaImp.cpp
76 lines (58 loc) · 1.89 KB
/
InterfazDelSistemaImp.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include "InterfazDelSistemaImp.h"
#ifndef INTERFAZ_DEL_SISTEMA_IMP_CPP
#define INTERFAZ_DEL_SISTEMA_IMP_CPP
// Inicialización de los atributos
InterfazDelSistemaImp::InterfazDelSistemaImp(unsigned int MAX_RECUPERAR)
{
fileSystem = new FileSystem(MAX_RECUPERAR);
}
// Eliminación de los objetos creados con "new"
InterfazDelSistemaImp::~InterfazDelSistemaImp()
{
delete fileSystem;
}
TipoRetorno InterfazDelSistemaImp::Mkdir(const char *rutaDirectorio)
{
return fileSystem->Mkdir(rutaDirectorio);
}
TipoRetorno InterfazDelSistemaImp::Rmdir(const char *rutaDirectorio)
{
return fileSystem->Rmdir(rutaDirectorio);
}
TipoRetorno InterfazDelSistemaImp::CopyDir(const char *rutaOrigen, const char *rutaDestino)
{
return fileSystem->CopyDir(rutaOrigen,rutaDestino);
}
TipoRetorno InterfazDelSistemaImp::Dir(const char *rutaDirectorio, const char *parametro) const
{
return fileSystem->Dir(rutaDirectorio,parametro);
}
TipoRetorno InterfazDelSistemaImp::CreateFile(const char *rutaArchivo)
{
return fileSystem->CreateFile(rutaArchivo);
}
TipoRetorno InterfazDelSistemaImp::Delete (const char *rutaArchivo)
{
return fileSystem->Delete(rutaArchivo);
}
TipoRetorno InterfazDelSistemaImp::Attrib(const char *rutaArchivo, const char *parametro)
{
return fileSystem->Attrib(rutaArchivo, parametro);
}
TipoRetorno InterfazDelSistemaImp::InsertText(const char *rutaArchivo, unsigned int nroLinea, unsigned int posLinea, const char *texto)
{
return fileSystem->InsertText(rutaArchivo,nroLinea,posLinea,texto);
}
TipoRetorno InterfazDelSistemaImp::DeleteText(const char *rutaArchivo, unsigned int nroLinea, unsigned int posLinea, unsigned int k)
{
return fileSystem->DeleteText(rutaArchivo,nroLinea,posLinea,k);
}
TipoRetorno InterfazDelSistemaImp::Type(const char *rutaArchivo) const
{
return fileSystem->Type(rutaArchivo);
}
TipoRetorno InterfazDelSistemaImp::Undelete()
{
return fileSystem->Undelete();
}
#endif