76 lines
2.9 KiB
C++
76 lines
2.9 KiB
C++
/*===========================================================================
|
|
==== ====
|
|
==== ====
|
|
=============================================================================
|
|
==== ====
|
|
==== 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
|
|
|