Created
November 7, 2012 03:11
-
-
Save leopic/4029370 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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