home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-29 | 990 b | 38 lines | [TEXT/CWIE] |
- //================================================================================
- // Greg Anderson
- // db+
- //
- // Document manager--finds documents
- // 17 May 1994
- //================================================================================
- #pragma once
-
- #ifndef __DOCUMENTMANAGER__
- #define __DOCUMENTMANAGER__
-
- //================================================================================
- // Class TDocumentManager
- //================================================================================
- class TDocumentManager
- {
- //
- // ----- Fields --------------------------------------------------------------
- //
- protected:
-
- //
- // ----- Methods -------------------------------------------------------------
- //
-
- public:
- TDocumentManager();
- virtual ~TDocumentManager();
-
- //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
- // Public interface:
- //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-
- };
-
- #endif
-