COVISE Core
coGRSetTimestepMsg.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8//-*-Mode: C++;-*-
9// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10// ++ (C)2007 VISENSO ++
11// ++ coGRSetTimestepMsg -message to set the timestep of the animation ++
12// ++ ++
13// ++ ++
14// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15
16#ifndef COGRSETTIMESTEPMSG_H
17#define COGRSETTIMESTEPMSG_H
18
19#include "coGRMsg.h"
20#include <util/coExport.h>
21
22namespace grmsg
23{
24
26{
27public:
28 int getActualTimeStep();
29 int getNumTimeSteps();
30 coGRSetTimestepMsg(int step, int maxSteps);
31 coGRSetTimestepMsg(const char *msg);
32
33private:
34 int step_;
36};
37}
38#endif
#define GRMSGEXPORT
Definition: coExport.h:349
Definition: coGRActivatedViewpointMsg.h:23
Definition: coGRMsg.h:38
Definition: coGRSetTimestepMsg.h:26
int step_
Definition: coGRSetTimestepMsg.h:34
int maxSteps_
Definition: coGRSetTimestepMsg.h:35