ciderpress/reformat/Directory.h
Andy McFadden 63b9996009 Normalize indentation and EOL
This updates all source files to use spaces instead of tabs for
indentation.  It also normalizes the end-of-line markers to be
Windows-style CRLF, and ensures that all files end with EOL.

No substantive changes were made; "diff -w" is empty.
2014-11-03 16:26:53 -08:00

33 lines
795 B
C++

/*
* CiderPress
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
* See the file LICENSE for distribution terms.
*/
/*
* Reformat subdirectories.
*/
#ifndef __LR_DIRECTORY__
#define __LR_DIRECTORY__
#include "ReformatBase.h"
/*
* Reformat a ProDOS directory.
*/
class ReformatDirectory : public ReformatText {
public:
ReformatDirectory(void) {}
virtual ~ReformatDirectory(void) {}
virtual void Examine(ReformatHolder* pHolder);
virtual int Process(const ReformatHolder* pHolder,
ReformatHolder::ReformatID id, ReformatHolder::ReformatPart part,
ReformatOutput* pOutput);
private:
void PrintDirEntries(const unsigned char* srcBuf,
long srcLen, bool showDeleted);
};
#endif /*__LR_DIRECTORY__*/