| #pragma once |
| |
| #ifndef SELECTIONUTILS_H |
| #define SELECTIONUTILS_H |
| |
| |
| #include "tfilepath.h" |
| |
| |
| #include <set> |
| #include <map> |
| |
| |
| |
| |
| |
| class TXsheet; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| template <typename LevelType> |
| void getSelectedFrames(const TXsheet &xsh, int r0, int c0, int r1, int c1, |
| std::map<LevelType *, std::set<TFrameId>> &framesByLevel); |
| |
| |
| |
| template <typename LevelType> |
| void getSelectedFrames(std::map<LevelType *, std::set<TFrameId>> &framesByLevel); |
| |
| #endif |