mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 05:16:11 +00:00
16 lines
204 B
C
16 lines
204 B
C
|
#ifndef IOMODESCONTROLLER_H
|
||
|
#define IOMODESCONTROLLER_H
|
||
|
|
||
|
#include "core/Cutter.h"
|
||
|
|
||
|
class IOModesController
|
||
|
{
|
||
|
|
||
|
|
||
|
public:
|
||
|
bool prepareForWriting();
|
||
|
bool canWrite();
|
||
|
};
|
||
|
|
||
|
#endif // IOMODESCONTROLLER_H
|