mirror of
https://github.com/fadden/ciderpress.git
synced 2024-10-31 16:04:54 +00:00
c78017b1d2
Moved comments and return types, switched to uint types, added "override" keyword.
29 lines
695 B
C++
29 lines
695 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Reformat CP/M files.
|
|
*/
|
|
#ifndef REFORMAT_CPMFILES_H
|
|
#define REFORMAT_CPMFILES_H
|
|
|
|
#include "ReformatBase.h"
|
|
|
|
/*
|
|
* Reformat CP/M text.
|
|
*/
|
|
class ReformatCPMText : public ReformatText {
|
|
public:
|
|
ReformatCPMText(void) {}
|
|
virtual ~ReformatCPMText(void) {}
|
|
|
|
virtual void Examine(ReformatHolder* pHolder) override;
|
|
virtual int Process(const ReformatHolder* pHolder,
|
|
ReformatHolder::ReformatID id, ReformatHolder::ReformatPart part,
|
|
ReformatOutput* pOutput) override;
|
|
};
|
|
|
|
#endif /*REFORMAT_CPMFILES_H*/
|