%%%%%%%%%% 
%%%%%%%%%% template-for-new-dialog-bar.cpp.txt
%%%%%%%%%%
%%%%%%%%%% author: Martin Ltzsch
%%%%%%%%%% 
%%%%%%%%%% This is a template for creating a new dialog bar implementation file.
%%%%%%%%%% Please process "template-for-new-dialog-bar.h.txt" before this one.
%%%%%%%%%% 
%%%%%%%%%% Step10: copy this template file to e.g. FooBlaDlgBar.cpp
%%%%%%%%%% 
%%%%%%%%%% Step11: Replace all occurences of "" by e.g. "FooBla"
%%%%%%%%%%
/**
* @file $$$$DlgBar.cpp
*
* Implementation of class C$$$$DlgBar
*
%%%%%%%%%%
%%%%%%%%%% Step12: Add the author(s) of this dialog here again.
%%%%%%%%%%
* @author Donald Duck
*/

#include "StdAfx.h"
#include "$$$$DlgBar.h"

C$$$$DlgBar::C$$$$DlgBar()
  : CRobotControlDialogBar(IDD)
{
  //{{AFX_DATA_INIT(C$$$$DlgBar)
  //}}AFX_DATA_INIT
}

C$$$$DlgBar::~C$$$$DlgBar()
{
}

BEGIN_MESSAGE_MAP(C$$$$DlgBar, CDynamicBarDlg)
  //{{AFX_MSG_MAP(C$$$$DlgBar)
  //}}AFX_MSG_MAP
END_MESSAGE_MAP()

void C$$$$DlgBar::DoDataExchange(CDataExchange* pDX)
{
  CDialog::DoDataExchange(pDX);
  //{{AFX_DATA_MAP(C$$$$DlgBar)
  //}}AFX_DATA_MAP
}

BOOL C$$$$DlgBar::OnInitDialog() 
{
  CDynamicBarDlg::OnInitDialog();

  return TRUE;
}

/*
 * Change log :
 * 
%%%%%%%%%% 
%%%%%%%%%% Step13: Remove the "_" characters from the next line. 
%%%%%%%%%% 
 * $_Log_$
 */

%%%%%%%%%% 
%%%%%%%%%% Step14: Remove all lines starting with "%%%%%%%%%%",  
%%%%%%%%%%         add the .h and .cpp file to the project
%%%%%%%%%%
%%%%%%%%%%         Finished !
%%%%%%%%%%

