Si la duración del vídeo es conocida... programa una función con javascript para que salte pasados X minutos de espera y sea la encargada de mostrar la capa en la que se encuentra el formulario.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: rir3760 en 26 Marzo 2014, 04:23 AM
Bajo el nuevo estándar C++11 la declaración de un vector es similar a la de un array y al utilizar "auto" nos olvidamos de indicar el tipo de la variable en el único bucle del programa.
#include <iostream>
using std::cout;
using std::endl;
#include <string>
using std::string;
#include <vector>
using std::vector;
int main()
{
vector<string> foo = {
"Aitor",
"Lluvia",
"Luna",
"Azul"
};
for ( auto str : foo )
cout << str << endl;
return 0;
}
while (fgets(leer, 1000, fichero) != NULL) //detecta cuando acaba la informacion del fichero datos.txt
{
fgets(leer,1000,fichero); //lee una linea del fichero , la guarda en leer y pasa a la siguiente linea
// teniendo ...
registro.setIdCuenta(idCliente);
registro.setNombre(nombre);
registro.setApellido(apellido);
registro.setIngreso(ingreso);
// la escritura quedaria ...
binary_write( escrituraBin, registro.getIdCuenta( ) );
binary_write( escrituraBin, registro.getNombre( ) );
binary_write( escrituraBin, registro.getApellido( ) );
binary_write( escrituraBin, registro.getIngreso( ) );
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
template< class T > void
binary_write( ostream& stream, const T& value )
{
stream.write( reinterpret_cast< const char* >( &value ), sizeof( T ) );
}
template< > void
binary_write( ostream& stream, const string& value )
{
stream.write( value.c_str( ), value.length( ) );
stream << '\0';
}
template< class T > void
binary_read( istream& stream, T& value )
{
stream.read( reinterpret_cast< char* >( &value ), sizeof( T ) );
}
template< > void
binary_read( istream& stream, string& value )
{
value.clear( );
while ( true )
{
char c;
stream >> c;
if ( c == '\0' )
break;
value += c;
}
}
int main()
{
ofstream fich( "text.txt", ios::out | ios::binary );
string text1 = "Prueba1";
string text2 = "Prueba2";
int dato = 1234;
binary_write( fich, text1 );
binary_write( fich, text2 );
binary_write( fich, dato );
fich.close( );
ifstream fich2 = ifstream( "text.txt", ios::in | ios::binary );
binary_read( fich2, text1 );
binary_read( fich2, text2 );
binary_read( fich2, dato );
cout << text1 << endl << text2 << endl << dato << endl;
}
#include <iomanip>
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
template< class T > void
binary_write( ostream& stream, const T& value )
{
stream.write( reinterpret_cast< const char* >( &value ), sizeof( T ) );
}
void
binary_write_string( ostream& stream, const string& value, int max_size )
{
int max = max_size - 1;
if ( value.length( ) < max )
max = value.length( );
stream.write( value.c_str( ), max );
for ( ; max < max_size; max++ )
stream << '\0';
}
template< class T > void
binary_read( istream& stream, T& value )
{
stream.read( reinterpret_cast< char* >( &value ), sizeof( T ) );
}
void
binary_read_string( istream& stream, string& value, int max_size )
{
value.clear( );
value.reserve( max_size );
int pos;
for ( pos = 0; pos < max_size; ++pos )
{
char c;
stream >> c;
if ( c == '\0' )
break;
value += c;
}
stream.ignore( max_size - pos - 1 );
}
int main()
{
ofstream fich( "text.txt", ios::out | ios::binary );
string text1 = "Prueba1";
string text2 = "Prueba2";
int dato = 1234;
binary_write_string( fich, text1, 10 );
binary_write_string( fich, text2, 10 );
binary_write( fich, dato );
fich.close( );
ifstream fich2 = ifstream( "text.txt", ios::in | ios::binary );
binary_read_string( fich2, text1, 10 );
binary_read_string( fich2, text2, 10 );
binary_read( fich2, dato );
cout << text1 << endl << text2 << endl << dato << endl;
}
100 Pedro Rodriguez 2000
101 Laura Fernandez 1890
102 Sergio Berbes 2685
ofstream fichero( "fichero.bin", ios::out | ios::binary);