~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmithAui/wxAuiToolBar/wxsAuiToolBarSeparator.h

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::Blocks 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* This file is part of wxSmithAui plugin for Code::Blocks Studio
 
3
* Copyright (C) 2008-2009  César Fernández Domínguez
 
4
*
 
5
* wxSmithAui is free software; you can redistribute it and/or modify
 
6
* it under the terms of the GNU General Public License as published by
 
7
* the Free Software Foundation; either version 3 of the License, or
 
8
* (at your option) any later version.
 
9
*
 
10
* wxSmithAui is distributed in the hope that it will be useful,
 
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
13
* GNU General Public License for more details.
 
14
*
 
15
* You should have received a copy of the GNU General Public License
 
16
* along with wxSmithAui. If not, see <http://www.gnu.org/licenses/>.
 
17
*/
 
18
 
 
19
#ifndef WXSAUITOOLBARSEPARATOR_H
 
20
#define WXSAUITOOLBARSEPARATOR_H
 
21
 
 
22
#include "wxsAuiToolBarItemBase.h"
 
23
 
 
24
/** \brief Class for wxsAuiToolBarSeparator widget */
 
25
class wxsAuiToolBarSeparator: public wxsAuiToolBarItemBase
 
26
{
 
27
    public:
 
28
        wxsAuiToolBarSeparator(wxsItemResData* Data);
 
29
};
 
30
 
 
31
#endif