Skip to content

Instantly share code, notes, and snippets.

@leopic
Created November 7, 2012 03:11
Show Gist options
  • Save leopic/4029370 to your computer and use it in GitHub Desktop.
Save leopic/4029370 to your computer and use it in GitHub Desktop.
#ifndef ORDEN_H
#define ORDEN_H
// La clase orden maneja los datos de cada orden
// para un camion.
class Orden {
private:
int numeroOrden;
String dueno;
long costo;
public:
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment