19 lines
215 B
C++
19 lines
215 B
C++
|
|
#ifndef __IMFText_h__
|
|
#define __IMFText_h__
|
|
|
|
#include "MString.h"
|
|
|
|
namespace coreutils {
|
|
|
|
class IMFText : public MString {
|
|
|
|
public:
|
|
IMFText(int fd, ZString boundary);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|