OGS
Utils.h
Go to the documentation of this file.
1
11#include <QListView>
12#include <QStringList>
13#include <QStringListModel>
14#include <string>
15#include <vector>
16
17namespace Utils
18{
19std::vector<std::string> getSelectedObjects(QStringList const& list);
20
21void moveSelectedItems(QListView* sourceView,
22 QStringListModel& sourceModel,
23 QStringListModel& targetModel);
24} // namespace Utils
std::vector< std::string > getSelectedObjects(QStringList const &list)
Definition Utils.cpp:15
void moveSelectedItems(QListView *sourceView, QStringListModel &sourceModel, QStringListModel &targetModel)
Definition Utils.cpp:23