1234567891011121314151617181920 |
- #ifndef JSONCONTROLLER_H
- #define JSONCONTROLLER_H
- #include "applicationcontroller.h"
- class T_CONTROLLER_EXPORT JsonController : public ApplicationController
- {
- Q_OBJECT
- public:
- JsonController() { }
- bool sessionEnabled() const { return false; }
- bool transactionEnabled() const { return false; }
- public slots:
- void index();
- void json();
- };
- #endif // JSONCONTROLLER_H
|