Home | Develop | Download | Contact
example_shape.cpp

Programa para el testeo de las funciones.

Programa para el testeo de las funciones.Para compilar o código example_shape.cpp:

g++ -static -o example_shape example_shape.cpp -lpdsramm

Para executar o programa:

./example_shape

Retornando por consola:

S:
3       5       4
S:
(3,5,4)
A:
(3,5,4)

Código example_shape.cpp:

#include <Pds/Ra>
int main(void)
{
Pds::Shape S(3,5,4);
S.Print("S:\n");
S.PrintStylized("S:\n");
A=S;
A.PrintStylized("A:\n");
return 0;
}
La clase tipo Pds::Shape . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: Shape.hpp:57
void Print(std::string str="")
Muestra en pantalla el contenido de Pds::Shape, elementos separados por tabulador.
void PrintStylized(std::string str="")
Muestra en pantalla el contenido de Pds::Shape, en el formato [Nli,Ncol].

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed