home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- //
- // standardfile is a base class to interface to the standard file package
- //
- // Note for CodeWarriors: if your compiler complains that it can not
- // use a struct as a base class for standardfile you probably are using
- // a precompiled header file generated with the C compiler with this C++
- // code. You should recompile them with the C++ compiler, and all should
- // be fine.
- //
- class standardfile : public StandardFileReply
- {
- public:
- standardfile( short dlogID);
-
- ~standardfile();
-
- protected:
-
- const short DLOG_ID;
- };
-