Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/05/2008, 16:25
Jaquense
 
Fecha de Ingreso: febrero-2005
Mensajes: 10
Antigüedad: 19 años, 11 meses
Puntos: 0
Crear header file en visual c++

Hola a todos, quisiera saber que estoy haciendo mal al crear un header file en Visual c++ 2008 express edition.

Bueno, lo que hice fue crear un nuevo proyecto en win32 console application. Despues en el solution explorer aparecen 3 carpetas: Header Files, Resource Files, Source Files.

Lo mas logico seria poner el header file en su carpeta no?, pues eso fue lo que hice y despues agregue el codigo:

Código:
#ifndef TIEMPO3_H
#define TIEMPO3_H

class Tiempo {

public:

    Tiempo ( int = 0, int = 0, int = 0 );

    void estableceHora ( int, int, int );
    void estableceHora1 ( int );
    void estableceMinuto ( int );
    void estableceSegundo ( int );

    int obtieneHora1 ();
    int obtieneMinuto ();
    int obtieneSegundo ();

    void imprimeUniversal ();
    void imprimeEstandar ();

private:

    int hora;
    int minuto;
    int segundo;

};

#endif
o guarde, lo compile y me aparecio el siguiente error:

------ Build started: Project: Tiempo3, Configuration: Debug Win32 ------
Embedding manifest...
.\Debug\Tiempo3.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. El sistema no puede hallar el archivo especificado.
Build log was saved at "file://e:\C++_Projects\Tiempo3\Tiempo3\Debug\BuildLog.htm "
Tiempo3 - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Que estoy haciendo mal?

Saludos