File: WindowReviewSet.h

package info (click to toggle)
glgrib 1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,861,496 kB
  • sloc: cpp: 20,811; ansic: 6,530; perl: 2,902; sh: 513; makefile: 147; python: 58; sql: 18
file content (25 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include "glGrib/Window.h"
#include "glGrib/Container.h"
#include "glGrib/WindowSet.h"

namespace glGrib
{

class WindowReviewSet : public WindowSet
{
public:
  explicit WindowReviewSet (const Options &);
  virtual ~WindowReviewSet () 
  {
  }
  const std::string getNextExt () const;
  const std::string getPrevExt () const;
  void updateWindows () override;
private:
  Container * cont = nullptr;
  std::string ext = "";
};

}