From fbfb2d45eec9c5b3959633b58efc760997bc2b88 Mon Sep 17 00:00:00 2001 From: mjjo Date: Sat, 20 Jul 2013 23:27:29 +0000 Subject: [PATCH] --- Common/LCLayout.h | 75 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 Common/LCLayout.h 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 +