mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-26 17:49:21 +00:00
29 lines
641 B
C++
29 lines
641 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Reformat CP/M files.
|
|
*/
|
|
#ifndef __LR_CPMFILES__
|
|
#define __LR_CPMFILES__
|
|
|
|
#include "ReformatBase.h"
|
|
|
|
/*
|
|
* Reformat CP/M text.
|
|
*/
|
|
class ReformatCPMText : public ReformatText {
|
|
public:
|
|
ReformatCPMText(void) {}
|
|
virtual ~ReformatCPMText(void) {}
|
|
|
|
virtual void Examine(ReformatHolder* pHolder);
|
|
virtual int Process(const ReformatHolder* pHolder,
|
|
ReformatHolder::ReformatID id, ReformatHolder::ReformatPart part,
|
|
ReformatOutput* pOutput);
|
|
};
|
|
|
|
#endif /*__LR_CPMFILES__*/
|