-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
25 lines (21 loc) · 1.19 KB
/
main.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
/******************************************************************************************/
/* TPO2 DPOO */
/* ALUMNO: Damian del Campo */
/* LU: 1027477 */
/* CARRERA: Ingenieria en Telecomunicaciones */
/* FECHA: 28/11/2015 */
/* ARCHIVO: Main.cpp */
/* */
/******************************************************************************************/
#include "ClaseMenu.h"
#include "ClaseLista.h"
#include "ClaseImagen.h"
int main(int argc, char *argv[])
{
Menu I;
if (I.PaseArgumentosMain(argc, argv)) I.menuPpal();
IMG_PGM imagen(I.resolucion, I.centro, I.imageWidth, I.imageHeight, I.name, I.intensidadPixel, I.cantDig, I.tamCache, I.semilla);
imagen.Set_Imagen();
system("PAUSE");
return 0;
}