You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
|
11 years ago
|
/*juCi++ model header file*/
|
||
|
|
#ifndef MODEL_H
|
||
|
|
#define MODEL_H
|
||
|
|
|
||
|
|
#include <iostream>
|
||
|
|
|
||
|
|
/* -------------------------- HOW TO -------------------------- */
|
||
|
|
/* Model classes under Model->public if they are going to be */
|
||
|
|
/* used from controllers */
|
||
|
|
/* ------------------ Remove these comments ------------------- */
|
||
|
|
|
||
|
|
class Model {
|
||
|
|
public:
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //MODEL_H
|