diff --git a/Common/LCLayout.h b/Common/LCLayout.h new file mode 100644 index 0000000..4359438 --- /dev/null +++ b/Common/LCLayout.h @@ -0,0 +1,75 @@ +/*=========================================================================== +==== ==== +==== ==== +============================================================================= +==== ==== +==== File : LCLayout.h ==== +==== Project name : ==== +==== Project number : ==== +==== Creation date : 14/10/2000 ==== +==== ==== +==== ==== +============================================================================= +===========================================================================*/ + +#ifndef LCLAYOUT_H +#define LCLAYOUT_H +#if _MSC_VER >= 1000 +#pragma once +#endif // _MSC_VER >= 1000 + + + +//============================================================================ +// Inclusions +//============================================================================ + + +//============================================================================ +// Constants +//============================================================================ + + +//============================================================================ +//============================================================================ +// classe CLCLayout +/*============================================================================ + +=============================================================================*/ +class CLCLayout +{ + +//============================================================================ +// Data types +//============================================================================ + public: + +//============================================================================ +// Creators +//============================================================================ + public: + + private: // Not implemented functions + CLCLayout &operator = (const CLCLayout&); + CLCLayout(const CLCLayout&); + +//============================================================================ +// Member functions +//============================================================================ + +// Implementation + public: + static void RestoreLayout(CListCtrl* pLC, const CString& regKey); + static void SaveLayout (CListCtrl* pLC, const CString& regKey); + +// Protected functions + protected: + +//============================================================================ +// Member variables +//============================================================================ +protected: +}; + +#endif // LCLAYOUT_H +