plugins/consoles/rcons/server/win32/Base.h
changeset 0 7f656887cf89
equal deleted inserted replaced
-1:000000000000 0:7f656887cf89
       
     1 // Base.h
       
     2 // 
       
     3 // Copyright (c) 2010 Accenture. All rights reserved.
       
     4 // This component and the accompanying materials are made available
       
     5 // under the terms of the "Eclipse Public License v1.0"
       
     6 // which accompanies this distribution, and is available
       
     7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 // 
       
     9 // Initial Contributors:
       
    10 // Accenture - Initial contribution
       
    11 //
       
    12 
       
    13 // Description:
       
    14 // Base.h: interface for the CBase class.
       
    15 
       
    16 #if !defined(AFX_BASE_H__531B81D8_F017_4998_92BA_35CB284A9B50__INCLUDED_)
       
    17 #define AFX_BASE_H__531B81D8_F017_4998_92BA_35CB284A9B50__INCLUDED_
       
    18 
       
    19 #if _MSC_VER > 1000
       
    20 #pragma once
       
    21 #endif // _MSC_VER > 1000
       
    22 
       
    23 #include "StdAfx.h"
       
    24 
       
    25 class CBase  
       
    26 	{
       
    27 public:
       
    28 	virtual ~CBase();
       
    29 	void SetName(LPCTSTR aName);
       
    30 protected:
       
    31 	CBase();
       
    32 private:
       
    33 	LPCTSTR iName;
       
    34 	};
       
    35 
       
    36 #endif // !defined(AFX_BASE_H__531B81D8_F017_4998_92BA_35CB284A9B50__INCLUDED_)