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
420 B
17 lines
420 B
/*juCi++ controller header file*/ |
|
#ifndef CONTROLLER_H |
|
#define CONTROLLER_H |
|
|
|
#include "model.h" |
|
|
|
/* -------------------------- HOW TO -------------------------- */ |
|
/* Controll classes under Controller->public */ |
|
/* Model object under Controller::class->private */ |
|
/* ------------------ Remove these comments ------------------- */ |
|
|
|
class Controller { |
|
public: |
|
|
|
}; |
|
|
|
#endif //CONTROLLER_H
|