This commit is contained in:
2013-07-20 23:27:29 +00:00
parent 3c8f07e4a3
commit fbfb2d45ee

75
Common/LCLayout.h Normal file
View File

@@ -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