Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LEFEBVREJP email
radix
Commits
d5654767
Commit
d5654767
authored
Aug 08, 2018
by
Purves, Murray
Browse files
Adding skeleton VTKChartWidget class
parent
c1c3a414
Pipeline
#14658
passed with stages
in 8 minutes and 19 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
radixwidgets/CMakeLists.txt
View file @
d5654767
...
...
@@ -24,6 +24,7 @@ SET(HEADERS
tabwidget.hh
tableview.hh
numberpadwidget.hh
vtkchartwidget.hh
)
#
# Moc the header files
...
...
@@ -52,6 +53,7 @@ SET(SOURCES
tabwidget.cc
tableview.cc
numberpadwidget.cc
vtkchartwidget.cc
)
##---------------------------------------------------------------------------##
...
...
radixwidgets/vtkchartwidget.cc
0 → 100644
View file @
d5654767
#include
"radixwidgets/vtkchartwidget.hh"
namespace
radix
{
VTKChartWidget
::
VTKChartWidget
(
QWidget
*
parent
)
:
QVTKOpenGLWidget
(
parent
)
{
}
}
// namespace radix
radixwidgets/vtkchartwidget.hh
0 → 100644
View file @
d5654767
#ifndef RADIX_RADIXWIDGETS_VTKCHARTWIDGET_HH_
#define RADIX_RADIXWIDGETS_VTKCHARTWIDGET_HH_
#include
<QVTKOpenGLWidget.h>
namespace
radix
{
class
VTKChartWidget
:
public
QVTKOpenGLWidget
{
Q_OBJECT
public:
VTKChartWidget
(
QWidget
*
parent
=
0
);
};
// class VTKChartWidget
}
// namespace radix
#endif // RADIX_RADIXWIDGETS_VTKCHARTWIDGET_HH_
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment